mirror of
https://github.com/ytdl-org/ytdl-nightly.git
synced 2025-06-05 21:49:13 +02:00
python2: don't use str, use compat_str
This commit is contained in:
@@ -2813,11 +2813,11 @@ class YoutubePlaylistIE(YoutubePlaylistBaseInfoExtractor):
|
|||||||
|
|
||||||
def _extract_mix_ids_from_yt_initial(self, yt_initial):
|
def _extract_mix_ids_from_yt_initial(self, yt_initial):
|
||||||
ids = []
|
ids = []
|
||||||
playlist_contents = try_get(yt_initial, lambda x: x['contents']['twoColumnWatchNextResults']['playlist']['playlist']['contents'])
|
playlist_contents = try_get(yt_initial, lambda x: x['contents']['twoColumnWatchNextResults']['playlist']['playlist']['contents'], list)
|
||||||
if type(playlist_contents) is list:
|
if playlist_contents:
|
||||||
for item in playlist_contents:
|
for item in playlist_contents:
|
||||||
videoId = try_get(item, lambda x: x['playlistPanelVideoRenderer']['videoId'])
|
videoId = try_get(item, lambda x: x['playlistPanelVideoRenderer']['videoId'], compat_str)
|
||||||
if type(videoId) is str:
|
if videoId:
|
||||||
ids.append(videoId)
|
ids.append(videoId)
|
||||||
return ids
|
return ids
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user