1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-20 03:59:32 +00:00

[audiomack] Stringify video id (closes #15310)

This commit is contained in:
rhhayward 2018-05-25 14:13:29 -05:00 committed by Sergey M
parent 03fad17cb6
commit 9ef5cdb5cb

View file

@ -65,7 +65,7 @@ class AudiomackIE(InfoExtractor):
return {'_type': 'url', 'url': api_response['url'], 'ie_key': 'Soundcloud'}
return {
'id': api_response.get('id', album_url_tag),
'id': compat_str(api_response.get('id', album_url_tag)),
'uploader': api_response.get('artist'),
'title': api_response.get('title'),
'url': api_response['url'],