Browse Source
[extractor/generic] Add forgotten return for jwplayer formats
master
Sergey M․
7 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
1 additions and
0 deletions
-
youtube_dl/extractor/generic.py
|
@ -2554,6 +2554,7 @@ class GenericIE(InfoExtractor): |
|
|
jwplayer_data, video_id, require_title=False) |
|
|
jwplayer_data, video_id, require_title=False) |
|
|
if not info.get('title'): |
|
|
if not info.get('title'): |
|
|
info['title'] = video_title |
|
|
info['title'] = video_title |
|
|
|
|
|
return info |
|
|
except ExtractorError: |
|
|
except ExtractorError: |
|
|
pass |
|
|
pass |
|
|
|
|
|
|
|
|