Fix artwork_url for Spotify albums
This commit is contained in:
parent
8f4dcb7eef
commit
0d3bb6732e
@ -98,14 +98,15 @@ class SpotifySource(Source):
|
|||||||
)
|
)
|
||||||
|
|
||||||
async def load_album(self, user, metadata):
|
async def load_album(self, user, metadata):
|
||||||
|
try:
|
||||||
|
artwork_url = metadata["images"][0]["url"]
|
||||||
|
except IndexError:
|
||||||
|
artwork_url = None
|
||||||
|
|
||||||
tracks = []
|
tracks = []
|
||||||
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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user