#16 Fix error "AttributeError: 'dict' object has no attribute 'name'" when attempt to downloading an artist

Merged
RemixDev merged 1 commits from :main into main 3 months ago
  1. +2
    -2
      deemix/utils/__init__.py

+ 2
- 2
deemix/utils/__init__.py View File

@ -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…
Cancel
Save