mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00: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
	 Jaime Marquínez Ferrándiz
					Jaime Marquínez Ferrándiz