mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[youtube] Fix uploader extraction in flat playlist mode (#28045)
This commit is contained in:
parent
a363fb5d28
commit
8980f53b42
1 changed files with 3 additions and 1 deletions
|
@ -308,7 +308,9 @@ class YoutubeBaseInfoExtractor(InfoExtractor):
|
|||
r'^([\d,]+)', re.sub(r'\s', '', view_count_text),
|
||||
'view count', default=None))
|
||||
uploader = try_get(
|
||||
renderer, lambda x: x['ownerText']['runs'][0]['text'], compat_str)
|
||||
renderer,
|
||||
(lambda x: x['ownerText']['runs'][0]['text'],
|
||||
lambda x: x['shortBylineText']['runs'][0]['text']), compat_str)
|
||||
return {
|
||||
'_type': 'url_transparent',
|
||||
'ie_key': YoutubeIE.ie_key(),
|
||||
|
|
Loading…
Reference in a new issue