mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Make sure album is updated if external cover changes
This commit is contained in:
parent
f5719a7571
commit
9ec349dce0
4 changed files with 28 additions and 11 deletions
|
@ -20,6 +20,7 @@ type (
|
|||
Path string
|
||||
ModTime time.Time
|
||||
Images []string
|
||||
ImagesUpdatedAt time.Time
|
||||
HasPlaylist bool
|
||||
AudioFilesCount uint32
|
||||
}
|
||||
|
@ -93,12 +94,15 @@ func loadDir(ctx context.Context, dirPath string) ([]string, *dirStats, error) {
|
|||
if fileInfo.ModTime().After(stats.ModTime) {
|
||||
stats.ModTime = fileInfo.ModTime()
|
||||
}
|
||||
if utils.IsAudioFile(entry.Name()) {
|
||||
switch {
|
||||
case utils.IsAudioFile(entry.Name()):
|
||||
stats.AudioFilesCount++
|
||||
} else {
|
||||
stats.HasPlaylist = stats.HasPlaylist || model.IsValidPlaylist(entry.Name())
|
||||
if utils.IsImageFile(entry.Name()) {
|
||||
stats.Images = append(stats.Images, entry.Name())
|
||||
case model.IsValidPlaylist(entry.Name()):
|
||||
stats.HasPlaylist = true
|
||||
case utils.IsImageFile(entry.Name()):
|
||||
stats.Images = append(stats.Images, entry.Name())
|
||||
if fileInfo.ModTime().After(stats.ImagesUpdatedAt) {
|
||||
stats.ImagesUpdatedAt = fileInfo.ModTime()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue