mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix Album.MaxYear calculation
This commit is contained in:
parent
7073d18b54
commit
8956f5e7fd
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ func (mfs MediaFiles) ToAlbum() Album {
|
|||
} else if m.Year > 0 {
|
||||
a.MinYear = number.Min(a.MinYear, m.Year)
|
||||
}
|
||||
a.MaxYear = number.Max(m.Year)
|
||||
a.MaxYear = number.Max(a.MaxYear, m.Year)
|
||||
a.UpdatedAt = newer(a.UpdatedAt, m.UpdatedAt)
|
||||
a.CreatedAt = older(a.CreatedAt, m.CreatedAt)
|
||||
a.Genres = append(a.Genres, m.Genres...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue