mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 23:25:06 +00:00
[yandexmusic:playlist] Fix extraction for python 3 (closes #12888)
This commit is contained in:
parent
7986c3abcd
commit
a4c81e4968
1 changed files with 2 additions and 1 deletions
|
@ -234,7 +234,8 @@ def _real_extract(self, url):
|
||||||
'overembed': 'false',
|
'overembed': 'false',
|
||||||
})['playlist']
|
})['playlist']
|
||||||
|
|
||||||
tracks, track_ids = playlist['tracks'], map(compat_str, playlist['trackIds'])
|
tracks = playlist['tracks']
|
||||||
|
track_ids = [compat_str(track_id) for track_id in playlist['trackIds']]
|
||||||
|
|
||||||
# tracks dictionary shipped with playlist.jsx API is limited to 150 tracks,
|
# tracks dictionary shipped with playlist.jsx API is limited to 150 tracks,
|
||||||
# missing tracks should be retrieved manually.
|
# missing tracks should be retrieved manually.
|
||||||
|
|
Loading…
Reference in a new issue