removed unneeded ".join"

This commit is contained in:
Martin Wagner 2021-08-05 22:58:28 +02:00
parent ddc0da3b8e
commit e5120c4336

View File

@ -1799,7 +1799,7 @@ class AlbumPopover(Gtk.Popover):
self._client.tagtypes("all")
for song in songs:
track=song["track"][0]
title=(", ".join(song["title"]))
title=str(song["title"])
# only show artists =/= albumartist
try:
song["artist"].remove(album_artist)