1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2025-01-24 13:37:54 +01:00

[rtvnh] Make thumbnail optional

This commit is contained in:
Sergey M․ 2015-08-13 01:00:25 +06:00
parent 240ca32e57
commit f196047832

View File

@ -35,6 +35,6 @@ class RTVNHIE(InfoExtractor):
return { return {
'id': video_id, 'id': video_id,
'title': meta['title'].strip(), 'title': meta['title'].strip(),
'thumbnail': meta['image'], 'thumbnail': meta.get('image'),
'formats': formats 'formats': formats
} }