mirror of https://github.com/yt-dlp/yt-dlp.git
[youtube] Don't show warning for empty playlist description (Closes #54)
:ci skip dl
This commit is contained in:
parent
8a0b932258
commit
ecc97af344
|
@ -975,7 +975,7 @@ class InfoExtractor(object):
|
||||||
video_info['id'] = playlist_id
|
video_info['id'] = playlist_id
|
||||||
if playlist_title:
|
if playlist_title:
|
||||||
video_info['title'] = playlist_title
|
video_info['title'] = playlist_title
|
||||||
if playlist_description:
|
if playlist_description is not None:
|
||||||
video_info['description'] = playlist_description
|
video_info['description'] = playlist_description
|
||||||
return video_info
|
return video_info
|
||||||
|
|
||||||
|
|
|
@ -2787,7 +2787,7 @@ class YoutubeTabIE(YoutubeBaseInfoExtractor):
|
||||||
data, lambda x: x['metadata']['playlistMetadataRenderer'], dict)
|
data, lambda x: x['metadata']['playlistMetadataRenderer'], dict)
|
||||||
if renderer:
|
if renderer:
|
||||||
title = renderer.get('title')
|
title = renderer.get('title')
|
||||||
description = renderer.get('description')
|
description = renderer.get('description', '')
|
||||||
playlist_id = channel_id
|
playlist_id = channel_id
|
||||||
tags = renderer.get('keywords', '').split()
|
tags = renderer.get('keywords', '').split()
|
||||||
thumbnails_list = (
|
thumbnails_list = (
|
||||||
|
|
Loading…
Reference in New Issue