Skip to content

Commit

Permalink
get_album: fix invalid track list artists (#617)
Browse files Browse the repository at this point in the history
  • Loading branch information
czifumasa authored and sigma67 committed Jul 11, 2024
1 parent cd502aa commit 8cc72e3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ytmusicapi/parsers/playlists.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,7 @@ def parse_playlist_item(
navigation_endpoint = nav(flex_column_item, [*TEXT_RUN, "navigationEndpoint"], True)

if not navigation_endpoint:
if nav(flex_column_item, TEXT_RUN_TEXT, True) is not None:
unrecognized_index = index if unrecognized_index is None else unrecognized_index
unrecognized_index = index if unrecognized_index is None else unrecognized_index
continue

if "watchEndpoint" in navigation_endpoint:
Expand Down

0 comments on commit 8cc72e3

Please sign in to comment.