Get title from MB album lookup

This commit is contained in:
2023-03-14 12:57:20 -04:00
parent 6dee409a55
commit 7d7ec4b676
2 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,7 @@ def get_or_create_album(
album = None
album_dict = lookup_album_dict_from_mb(name, artist_name=artist.name)
name = name or album_dict["name"]
name = name or album_dict["title"]
mbid = mbid or album_dict["mb_id"]
logger.debug(f"Looking up album {name} and mbid: {mbid}")