1
1
mirror of https://github.com/ytdl-org/youtube-dl synced 2024-07-10 23:24:20 +02:00

[bambuser] Fix 'uploader_id' extraction (fixes #4944)

This commit is contained in:
Jaime Marquínez Ferrándiz 2015-02-13 11:36:33 +01:00
parent c80b9cd280
commit ae6423d704

View File

@ -50,7 +50,7 @@ class BambuserIE(InfoExtractor):
'duration': int(info['length']),
'view_count': int(info['views_total']),
'uploader': info['username'],
'uploader_id': info['uid'],
'uploader_id': info['owner']['uid'],
}