Add artworkUrl checks to remaining Spotify load funcs

This commit is contained in:
Parker M. 2024-11-29 22:59:13 -06:00
parent 60bace9f28
commit 8f4dcb7eef
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E

View File

@ -73,6 +73,10 @@ class SpotifySource(Source):
) # Initialising our custom source with the name 'custom'. ) # Initialising our custom source with the name 'custom'.
async def load_item(self, user, metadata): async def load_item(self, user, metadata):
try:
artwork_url = metadata["album"]["images"][0]["url"]
except IndexError:
artwork_url = None
track = CustomAudioTrack( track = CustomAudioTrack(
{ # Create an instance of our CustomAudioTrack. { # Create an instance of our CustomAudioTrack.
"identifier": metadata[ "identifier": metadata[
@ -85,7 +89,7 @@ class SpotifySource(Source):
"title": metadata["name"], "title": metadata["name"],
"uri": metadata["external_urls"]["spotify"], "uri": metadata["external_urls"]["spotify"],
"duration": metadata["duration_ms"], "duration": metadata["duration_ms"],
"artworkUrl": metadata["album"]["images"][0]["url"], "artworkUrl": artwork_url,
}, },
requester=user, requester=user,
) )
@ -98,6 +102,10 @@ class SpotifySource(Source):
for track in metadata["tracks"][ for track in metadata["tracks"][
"items" "items"
]: # Loop through each track in the album. ]: # Loop through each track in the album.
try:
artwork_url = track["album"]["images"][0]["url"]
except IndexError:
artwork_url = None
tracks.append( tracks.append(
CustomAudioTrack( CustomAudioTrack(
{ # Create an instance of our CustomAudioTrack. { # Create an instance of our CustomAudioTrack.
@ -111,7 +119,7 @@ class SpotifySource(Source):
"title": track["name"], "title": track["name"],
"uri": track["external_urls"]["spotify"], "uri": track["external_urls"]["spotify"],
"duration": track["duration_ms"], "duration": track["duration_ms"],
"artworkUrl": metadata["images"][0]["url"], "artworkUrl": artwork_url,
}, },
requester=user, requester=user,
) )