mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Fix AlbumPlayCountMode. Closes #2984
This commit is contained in:
parent
2c06a4234e
commit
a8955f24e0
3 changed files with 35 additions and 13 deletions
|
@ -10,7 +10,6 @@ import (
|
|||
. "github.com/Masterminds/squirrel"
|
||||
"github.com/deluan/rest"
|
||||
"github.com/navidrome/navidrome/conf"
|
||||
"github.com/navidrome/navidrome/consts"
|
||||
"github.com/navidrome/navidrome/log"
|
||||
"github.com/navidrome/navidrome/model"
|
||||
"github.com/pocketbase/dbx"
|
||||
|
@ -23,13 +22,12 @@ type albumRepository struct {
|
|||
|
||||
type dbAlbum struct {
|
||||
*model.Album `structs:",flatten"`
|
||||
Discs string `structs:"-" json:"discs"`
|
||||
Discs string `structs:"-" json:"discs"`
|
||||
PlayCount float64 `structs:"-" json:"play_count"`
|
||||
}
|
||||
|
||||
func (a *dbAlbum) PostScan() error {
|
||||
if conf.Server.AlbumPlayCountMode == consts.AlbumPlayCountModeNormalized && a.Album.SongCount != 0 {
|
||||
a.Album.PlayCount = int64(math.Round(float64(a.Album.PlayCount) / float64(a.Album.SongCount)))
|
||||
}
|
||||
a.Album.PlayCount = int64(math.Round(a.PlayCount))
|
||||
if a.Discs != "" {
|
||||
return json.Unmarshal([]byte(a.Discs), &a.Album.Discs)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue