From 0f1add8b027e009d5d1bde90fb25e4fbff80247c Mon Sep 17 00:00:00 2001 From: Alok Saboo Date: Fri, 26 May 2023 08:31:51 -0400 Subject: [PATCH] Change to spotify_album_id --- beetsplug/fetchart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/fetchart.py b/beetsplug/fetchart.py index 3ace8f0dd..a29ab6a41 100644 --- a/beetsplug/fetchart.py +++ b/beetsplug/fetchart.py @@ -956,7 +956,7 @@ class Spotify(RemoteArtSource): return HAS_BEAUTIFUL_SOUP def get(self, album, plugin, paths): - url = self.SPOTIFY_ALBUM_URL + album.mb_albumid + url = self.SPOTIFY_ALBUM_URL + album.items().get().spotify_album_id try: response = requests.get(url) response.raise_for_status()