Skip to content

Commit

Permalink
Merge pull request #64 from mikey-austin/master
Browse files Browse the repository at this point in the history
Fix bug in album track listing
  • Loading branch information
impliedchaos authored Aug 22, 2022
2 parents fe380bb + b1735b6 commit 6d18d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mopidy_ytmusic/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ def albumToTracks(self, album, bId):
):
songartists = artists
else:
songartists = [Artist(name=song["artists"])]
songartists = [Artist(name=artistname)]
self.TRACKS[song["videoId"]] = Track(
uri=f"ytmusic:track:{song['videoId']}",
name=song["title"],
Expand Down

0 comments on commit 6d18d66

Please sign in to comment.