fixed bug in AlbumDialog

This commit is contained in:
Martin Wagner 2020-06-04 20:00:51 +02:00
parent b3d96f3e9f
commit f9b632802f

View File

@ -1063,7 +1063,10 @@ class AlbumDialog(Gtk.Dialog):
else:
title=song["title"]
if type(song["artist"]) == list:
song["artist"].remove(self.artist)
try:
song["artist"].remove(self.artist)
except:
pass
artist=(', '.join(song["artist"]))
else:
artist=song["artist"]