mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[indavideo:embed] Fix tags extraction (Closes #8738)
This commit is contained in:
		| @@ -73,7 +73,7 @@ class IndavideoEmbedIE(InfoExtractor): | ||||
|             'url': self._proto_relative_url(thumbnail) | ||||
|         } for thumbnail in video.get('thumbnails', [])] | ||||
|  | ||||
|         tags = [tag['title'] for tag in video.get('tags', [])] | ||||
|         tags = [tag['title'] for tag in video.get('tags') or []] | ||||
|  | ||||
|         return { | ||||
|             'id': video.get('id') or video_id, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user