1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-29 20:51:10 +02:00

[mixcloud] The description field may be missing (fixes #1819)

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-11-24 11:28:44 +01:00
parent d214fdb8fe
commit dc65dcbb6d

View File

@ -60,7 +60,7 @@ def _real_extract(self, url):
'title': info['name'],
'url': final_song_url,
'ext': 'mp3',
'description': info['description'],
'description': info.get('description'),
'thumbnail': info['pictures'].get('extra_large'),
'uploader': info['user']['name'],
'uploader_id': info['user']['username'],