From 232c45bd06137cdb2440585aef05471f1ee93afd Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 10 Jun 2024 16:33:37 -0400 Subject: [PATCH] Increase artist image url sizes. See https://support.symfonium.app/t/artist-picture-less-compressed/4447 --- server/subsonic/browsing.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 {