mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
[bbc] Make playlist title optional
This commit is contained in:
parent
b5d48cb1ef
commit
975977860d
1 changed files with 1 additions and 1 deletions
|
@ -687,7 +687,7 @@ def _real_extract(self, url):
|
|||
'subtitles': subtitles,
|
||||
})
|
||||
playlist_title = self._og_search_title(webpage)
|
||||
playlist_description = self._og_search_description(webpage)
|
||||
playlist_description = self._og_search_description(webpage, default=None)
|
||||
return self.playlist_result(entries, playlist_id, playlist_title, playlist_description)
|
||||
|
||||
# single video story (e.g. http://www.bbc.com/travel/story/20150625-sri-lankas-spicy-secret)
|
||||
|
|
Loading…
Reference in a new issue