mirror of
https://github.com/SoongNoonien/mpdevil.git
synced 2023-08-10 21:12:44 +03:00
fixed bug in AlbumDialog
This commit is contained in:
parent
b3d96f3e9f
commit
f9b632802f
@ -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"]
|
||||
|
Loading…
Reference in New Issue
Block a user