mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[lynda] Fix download if subtitles were not requested
This commit is contained in:
parent
73a25b30ea
commit
7b09a4d847
@ -68,6 +68,9 @@ class LyndaIE(SubtitlesInfoExtractor):
|
||||
_TIMECODE_REGEX = r'\[(?P<timecode>\d+:\d+:\d+[\.,]\d+)\]'
|
||||
|
||||
def _fix_subtitles(self, subtitles):
|
||||
if subtitles is None:
|
||||
return subtitles # subtitles not requested
|
||||
|
||||
fixed_subtitles = {}
|
||||
for k, v in subtitles.items():
|
||||
subs = json.loads(v)
|
||||
|
Loading…
Reference in New Issue
Block a user