mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Better termination handling in Scanner's progress
This commit is contained in:
parent
3ad36ebd2a
commit
f29bb211d1
3 changed files with 36 additions and 31 deletions
|
@ -4,6 +4,7 @@ import (
|
|||
"github.com/deluan/navidrome/conf"
|
||||
"github.com/deluan/navidrome/log"
|
||||
"github.com/spf13/cobra"
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
var fullRescan bool
|
||||
|
@ -26,7 +27,7 @@ func runScanner() {
|
|||
conf.Server.DevPreCacheAlbumArtwork = false
|
||||
|
||||
scanner := GetScanner()
|
||||
_ = scanner.RescanAll(fullRescan)
|
||||
_ = scanner.RescanAll(context.Background(), fullRescan)
|
||||
if fullRescan {
|
||||
log.Info("Finished full rescan")
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue