Fix album fields in simulated browsing by folder

This commit is contained in:
Deluan 2020-08-13 23:56:33 -04:00 committed by Deluan Quintão
parent 0e16d7cfbb
commit 278d0ea8f3
1 changed files with 3 additions and 0 deletions

View File

@ -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