Bit of a hack to fix artist lookups

This commit is contained in:
2023-03-27 23:49:00 -04:00
parent 09f97c6eed
commit a7bf405af2

View File

@ -71,13 +71,14 @@ def get_or_create_album(
] ]
) )
album.artists.add(artist) album.artists.add(artist)
album.fix_album_artist()
album.fetch_artwork() album.fetch_artwork()
album.scrape_allmusic() album.scrape_allmusic()
album.fix_album_artist()
if not album: if not album:
logger.warn(f"No album found for {name} and {mbid}") logger.warn(f"No album found for {name} and {mbid}")
album.fix_album_artist()
return album return album