mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
More metadata for children (albums/mediafiles)
This commit is contained in:
parent
37f72f2efc
commit
5fd9da505e
5 changed files with 42 additions and 14 deletions
|
@ -104,5 +104,14 @@ func (c *BaseAPIController) ToChild(entry engine.Entry) responses.Child {
|
|||
if !entry.Starred.IsZero() {
|
||||
n.Starred = &entry.Starred
|
||||
}
|
||||
n.Path = entry.Path
|
||||
n.PlayCount = entry.PlayCount
|
||||
n.DiscNumber = entry.DiscNumber
|
||||
if !entry.Created.IsZero() {
|
||||
n.Created = &entry.Created
|
||||
}
|
||||
n.AlbumId = entry.AlbumId
|
||||
n.ArtistId = entry.ArtistId
|
||||
n.Type = entry.Type
|
||||
return n
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue