mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-06 12:37:09 +01:00
[indavideo:embed] Fix tags extraction (Closes #8738)
This commit is contained in:
parent
a8276b2680
commit
d0ff690d68
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user