mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-16 13:23:20 +00:00
[rtvnh] Make thumbnail optional
This commit is contained in:
parent
240ca32e57
commit
f196047832
|
@ -35,6 +35,6 @@ def _real_extract(self, url):
|
||||||
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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue