Fix error "AttributeError: 'dict' object has no attribute 'name'" when attempt to downloading an artist
This commit is contained in:
parent
01bcd9ce37
commit
bb00dd218d
|
@ -77,9 +77,9 @@ def removeDuplicateArtists(artist, artists):
|
||||||
|
|
||||||
def formatListener(key, data=None):
|
def formatListener(key, data=None):
|
||||||
if key == "startAddingArtist":
|
if key == "startAddingArtist":
|
||||||
return f"Started gathering {data.name}'s albums ({data.id})"
|
return f"Started gathering {data['name']}'s albums ({data['id']})"
|
||||||
if key == "finishAddingArtist":
|
if key == "finishAddingArtist":
|
||||||
return f"Finished gathering {data.name}'s albums ({data.id})"
|
return f"Finished gathering {data['name']}'s albums ({data['id']})"
|
||||||
if key == "updateQueue":
|
if key == "updateQueue":
|
||||||
uuid = f"[{data['uuid']}]"
|
uuid = f"[{data['uuid']}]"
|
||||||
if data.get('downloaded'):
|
if data.get('downloaded'):
|
||||||
|
|
Loading…
Reference in New Issue