From 278d0ea8f38a5b71cfaa7496faae514cffc47488 Mon Sep 17 00:00:00 2001 From: Deluan Date: Thu, 13 Aug 2020 23:56:33 -0400 Subject: [PATCH] Fix album fields in simulated browsing by folder --- server/subsonic/helpers.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/subsonic/helpers.go b/server/subsonic/helpers.go index 5391037d..4a5378e7 100644 --- a/server/subsonic/helpers.go +++ b/server/subsonic/helpers.go @@ -231,12 +231,15 @@ func childFromAlbum(ctx context.Context, al model.Album) responses.Child { child := responses.Child{} child.Id = al.ID child.IsDir = true + child.Title = al.Name child.Name = al.Name + child.Album = al.Name child.Artist = al.AlbumArtist child.Year = al.MaxYear child.Genre = al.Genre child.CoverArt = al.CoverArtId child.Created = &al.CreatedAt + child.Parent = al.AlbumArtistID child.ArtistId = al.AlbumArtistID child.Duration = int(al.Duration) child.SongCount = al.SongCount