forked from minhngoc25a/yt-dlc
[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+)\]'
|
_TIMECODE_REGEX = r'\[(?P<timecode>\d+:\d+:\d+[\.,]\d+)\]'
|
||||||
|
|
||||||
def _fix_subtitles(self, subtitles):
|
def _fix_subtitles(self, subtitles):
|
||||||
|
if subtitles is None:
|
||||||
|
return subtitles # subtitles not requested
|
||||||
|
|
||||||
fixed_subtitles = {}
|
fixed_subtitles = {}
|
||||||
for k, v in subtitles.items():
|
for k, v in subtitles.items():
|
||||||
subs = json.loads(v)
|
subs = json.loads(v)
|
||||||
|
|
Loading…
Reference in New Issue