mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-24 23:25:54 -07:00
Fixed playlist description/added playlist description when using youtube-dl --flat-playlist -J <playlist URL>
This commit is contained in:
parent
a803582717
commit
47478f876f
1 changed files with 1 additions and 0 deletions
|
@ -2785,6 +2785,7 @@ class YoutubeTabIE(YoutubeBaseInfoExtractor):
|
|||
data, lambda x: x['metadata']['playlistMetadataRenderer'], dict)
|
||||
if renderer:
|
||||
title = renderer.get('title')
|
||||
description = renderer.get('description')
|
||||
else:
|
||||
renderer = try_get(
|
||||
data, lambda x: x['header']['hashtagHeaderRenderer'], dict)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue