mirror of
https://github.com/sigma67/ytmusicapi.git
synced 2026-04-25 23:36:00 +03:00
[GH-ISSUE #622] get_playlist returns None for track title #425
Labels
No labels
a/b
bug
documentation
enhancement
good first issue
help wanted
invalid
pull-request
question
wontfix
yt-error
yt-update
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ytmusicapi#425
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @abhishekmj303 on GitHub (Jul 14, 2024).
Original GitHub issue: https://github.com/sigma67/ytmusicapi/issues/622
Describe the bug
For some playlists in YT Music Featured playlists like: Indian Indie Essentials and Indie Rising returns
Nonefor some of the track titles.For example:
Complete response: https://pastebin.com/rWCpb7uT
To Reproduce
Steps to reproduce the behavior:
YTMusic()objectget_playlist(playlist_id, limit=None)Additional context
ytmusicapi version: 1.7.5
Python version: 3.11.9
Edit:
Just tested with other versions, and version 1.7.3 seems to work fine.
@czifumasa commented on GitHub (Jul 14, 2024):
I think it's the result of my changes in (#612). The playlist track from your example is not a song, but a podcast episode:
https://music.youtube.com/podcast/bSAlE_WgHxY
It needs another condition in a new logic. I created PR (#623) with a quick fix. After that, it should work the same as in 1.7.3.
@sigma67 commented on GitHub (Jul 15, 2024):
@abhishekmj303 please verify that the fix works for you
@abhishekmj303 commented on GitHub (Jul 15, 2024):
@czifumasa @sigma67 Yeah, it seems to be working now! Thank You.