mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-07-02 12:02:49 -05:00
YoutubePlaylistIE: don't crash with empty lists (related #808)
The playlist_title wasn't initialized.
This commit is contained in:
@ -1723,12 +1723,11 @@ class YoutubePlaylistIE(InfoExtractor):
|
||||
if 'feed' not in response:
|
||||
self._downloader.report_error(u'Got a malformed response from YouTube API')
|
||||
return
|
||||
playlist_title = response['feed']['title']['$t']
|
||||
if 'entry' not in response['feed']:
|
||||
# Number of videos is a multiple of self._MAX_RESULTS
|
||||
break
|
||||
|
||||
playlist_title = response['feed']['title']['$t']
|
||||
|
||||
videos += [ (entry['yt$position']['$t'], entry['content']['src'])
|
||||
for entry in response['feed']['entry']
|
||||
if 'content' in entry ]
|
||||
|
Reference in New Issue
Block a user