1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-03 02:49:28 +00:00

[RBMA] Do not fail if thumbnail is empty

This commit is contained in:
Philipp Hagemeister 2013-01-12 18:45:50 +01:00
parent 335959e778
commit 187f491ad2

View file

@ -3758,7 +3758,7 @@ class RBMARadioIE(InfoExtractor):
'location': data.get('country_of_origin'),
'uploader': data.get('host', {}).get('name'),
'uploader_id': data.get('host', {}).get('slug'),
'thumbnail': data.get('image').get('large_url_2x'),
'thumbnail': data.get('image', {}).get('large_url_2x'),
'duration': data.get('duration'),
}
return [info]