1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-21 12:39:33 +00:00

[bbc] Add proper default to _search_json_ld call

This commit is contained in:
Sergey M․ 2016-08-08 22:44:36 +07:00
parent 321b5e082a
commit 522f6c066d
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -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')