mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[bambuser] Fix 'uploader_id' extraction (fixes #4944)
This commit is contained in:
parent
c80b9cd280
commit
ae6423d704
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ def _real_extract(self, url):
|
|||
'duration': int(info['length']),
|
||||
'view_count': int(info['views_total']),
|
||||
'uploader': info['username'],
|
||||
'uploader_id': info['uid'],
|
||||
'uploader_id': info['owner']['uid'],
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue