mirror of
https://gitlab.com/dstftw/youtube-dl.git
synced 2020-11-16 09:42:26 +00:00
SoundcloudSetIE: Use upload_date in the unified format (fixes #812)
This commit is contained in:
parent
767e00277f
commit
fe348844d9
|
@ -2768,7 +2768,7 @@ class SoundcloudSetIE(InfoExtractor):
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'url': mediaURL,
|
'url': mediaURL,
|
||||||
'uploader': track['user']['username'],
|
'uploader': track['user']['username'],
|
||||||
'upload_date': track['created_at'],
|
'upload_date': unified_strdate(track['created_at']),
|
||||||
'title': track['title'],
|
'title': track['title'],
|
||||||
'ext': u'mp3',
|
'ext': u'mp3',
|
||||||
'description': track['description'],
|
'description': track['description'],
|
||||||
|
|
Loading…
Reference in a new issue