diff --git a/server/subsonic/browsing.go b/server/subsonic/browsing.go index 77951ff33..954ca1ffc 100644 --- a/server/subsonic/browsing.go +++ b/server/subsonic/browsing.go @@ -257,9 +257,9 @@ func (api *Router) GetArtistInfo(r *http.Request) (*responses.Subsonic, error) { response := newResponse() response.ArtistInfo = &responses.ArtistInfo{} response.ArtistInfo.Biography = artist.Biography - response.ArtistInfo.SmallImageUrl = public.ImageURL(r, artist.CoverArtID(), 150) - response.ArtistInfo.MediumImageUrl = public.ImageURL(r, artist.CoverArtID(), 300) - response.ArtistInfo.LargeImageUrl = public.ImageURL(r, artist.CoverArtID(), 600) + response.ArtistInfo.SmallImageUrl = public.ImageURL(r, artist.CoverArtID(), 300) + response.ArtistInfo.MediumImageUrl = public.ImageURL(r, artist.CoverArtID(), 600) + response.ArtistInfo.LargeImageUrl = public.ImageURL(r, artist.CoverArtID(), 1200) response.ArtistInfo.LastFmUrl = artist.ExternalUrl response.ArtistInfo.MusicBrainzID = artist.MbzArtistID for _, s := range artist.SimilarArtists {