From 9590b3c25d40a8ac931b4c1ed6c3c689368a39db Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 10 Apr 2023 15:34:22 -0400 Subject: [PATCH] Use the highest resolution artist image from Spotify --- model/artist.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/model/artist.go b/model/artist.go index 5159e6dceca..1a3ba49685e 100644 --- a/model/artist.go +++ b/model/artist.go @@ -25,12 +25,12 @@ type Artist struct { } func (a Artist) ArtistImageUrl() string { - if a.MediumImageUrl != "" { - return a.MediumImageUrl - } if a.LargeImageUrl != "" { return a.LargeImageUrl } + if a.MediumImageUrl != "" { + return a.MediumImageUrl + } return a.SmallImageUrl }