Browse Source
[bbc] Add proper default to _search_json_ld call
master
Sergey M․
8 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
1 additions and
1 deletions
-
youtube_dl/extractor/bbc.py
|
|
@ -759,7 +759,7 @@ class BBCIE(BBCCoUkIE): |
|
|
|
|
|
|
|
webpage = self._download_webpage(url, playlist_id) |
|
|
|
|
|
|
|
json_ld_info = self._search_json_ld(webpage, playlist_id, default=None) |
|
|
|
json_ld_info = self._search_json_ld(webpage, playlist_id, default={}) |
|
|
|
timestamp = json_ld_info.get('timestamp') |
|
|
|
|
|
|
|
playlist_title = json_ld_info.get('title') |
|
|
|