Fix artwork_url for Spotify albums

This commit is contained in:
Parker M. 2024-11-30 00:15:34 -06:00
parent 8f4dcb7eef
commit 0d3bb6732e
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E

View File

@ -98,14 +98,15 @@ class SpotifySource(Source):
)
async def load_album(self, user, metadata):
try:
artwork_url = metadata["images"][0]["url"]
except IndexError:
artwork_url = None
tracks = []
for track in metadata["tracks"][
"items"
]: # Loop through each track in the album.
try:
artwork_url = track["album"]["images"][0]["url"]
except IndexError:
artwork_url = None
tracks.append(
CustomAudioTrack(
{ # Create an instance of our CustomAudioTrack.