[pluralsight] Fix missing first line of subtitles (closes #11118)

This commit is contained in:
50csent 2017-12-29 22:59:49 +02:00 committed by Sergey M․
parent d2c5b5a951
commit 2c8e11b4af
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -171,12 +171,12 @@ 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
end = duration if num == len(subs) - 1 else float_or_none(
dict_get(subs[num + 1], TIME_OFFSET_KEYS))
dict_get(subs[num + 1], TIME_OFFSET_KEYS, skip_false_values=False))
if end is None:
continue
srt += os.linesep.join(