Only start the cache warming after all folders were scanned

This commit is contained in:
Deluan 2020-10-27 20:11:25 -04:00
parent d9f7a154cf
commit 464e251d19
2 changed files with 1 additions and 1 deletions

View file

@ -122,6 +122,7 @@ func (s *scanner) RescanAll(fullRescan bool) {
}
func (s *scanner) rescanAll(fullRescan bool) {
defer s.cacheWarmer.Flush(context.Background())
var hasError bool
for folder := range s.folders {
err := s.rescan(folder, fullRescan)

View file

@ -65,7 +65,6 @@ const (
// Delete all empty albums, delete all empty artists, clean-up playlists
func (s *TagScanner) Scan(ctx context.Context, lastModifiedSince time.Time) error {
ctx = s.withAdminUser(ctx)
defer s.cacheWarmer.Flush(ctx)
start := time.Now()
allFSDirs, err := s.getDirTree(ctx)