1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-05-19 18:49:51 +08:00

[indavideo:embed] Fix tags extraction (Closes #8738)

This commit is contained in:
Sergey M․
2016-03-04 00:09:40 +06:00
Unverified
parent a8276b2680
commit d0ff690d68
+1 -1
View File
@@ -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,