mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:30:46 +00:00 
			
		
		
		
	[YT Search] No results if items is not in response
When a query results of 0 items, the key items is not present in the api_response dictionary, raising a KeyError. Intead, look for the key and call trouble if it's not present.
This commit is contained in:
		@@ -1478,6 +1478,10 @@ class YoutubeSearchIE(InfoExtractor):
 | 
			
		||||
                return
 | 
			
		||||
            api_response = json.loads(data)['data']
 | 
			
		||||
 | 
			
		||||
            if not 'items' in api_response:
 | 
			
		||||
                self._downloader.trouble(u'[youtube] No video results')
 | 
			
		||||
                return
 | 
			
		||||
 | 
			
		||||
            new_ids = list(video['id'] for video in api_response['items'])
 | 
			
		||||
            video_ids += new_ids
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user