Add artworkUrl
checks to remaining Spotify load funcs
This commit is contained in:
parent
60bace9f28
commit
8f4dcb7eef
@ -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,
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user