1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-05-31 10:19:52 +08:00

[pluralsight] Fixes #11118

This commit is contained in:
50csent
2017-12-29 18:43:16 +02:00
committed by GitHub
Unverified
parent 9d6ac71c27
commit bcb1c0a6ae
+1 -1
View File
@@ -171,7 +171,7 @@ class PluralsightIE(PluralsightBaseIE):
for num, current in enumerate(subs):
current = subs[num]
start, text = (
float_or_none(dict_get(current, TIME_OFFSET_KEYS)),
float_or_none(dict_get(current, TIME_OFFSET_KEYS, skip_false_values=False)),
dict_get(current, TEXT_KEYS))
if start is None or text is None:
continue