From 59aaf56b0dcdcc9be102a53ff59f7bc39b042d2b Mon Sep 17 00:00:00 2001 From: Deluan Date: Sat, 8 Jun 2024 13:32:57 -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 effa9b2cf..77951ff33 100644 --- a/server/subsonic/browsing.go +++ b/server/subsonic/browsing.go @@ -190,9 +190,9 @@ func (api *Router) GetAlbumInfo(r *http.Request) (*responses.Subsonic, error) { response := newResponse() response.AlbumInfo = &responses.AlbumInfo{} response.AlbumInfo.Notes = album.Description - response.AlbumInfo.SmallImageUrl = public.ImageURL(r, album.CoverArtID(), 150) - response.AlbumInfo.MediumImageUrl = public.ImageURL(r, album.CoverArtID(), 300) - response.AlbumInfo.LargeImageUrl = public.ImageURL(r, album.CoverArtID(), 600) + response.AlbumInfo.SmallImageUrl = public.ImageURL(r, album.CoverArtID(), 300) + response.AlbumInfo.MediumImageUrl = public.ImageURL(r, album.CoverArtID(), 600) + response.AlbumInfo.LargeImageUrl = public.ImageURL(r, album.CoverArtID(), 1200) response.AlbumInfo.LastFmUrl = album.ExternalUrl response.AlbumInfo.MusicBrainzID = album.MbzAlbumID