Remove dangling tracks after changing MusicFolder. Fix #445

This commit is contained in:
Deluan 2020-10-02 16:18:45 -04:00
parent 1be79fa945
commit f859772723
5 changed files with 27 additions and 13 deletions

View file

@ -33,13 +33,11 @@ func NewTagScanner(rootFolder string, ds model.DataStore) *TagScanner {
}
}
type (
counters struct {
added int64
updated int64
deleted int64
}
)
type counters struct {
added int64
updated int64
deleted int64
}
const (
// filesBatchSize used for batching file metadata extraction
@ -125,7 +123,7 @@ func (s *TagScanner) Scan(ctx context.Context, lastModifiedSince time.Time) erro
log.Debug("Playlist auto-import is disabled")
}
err = s.ds.GC(log.NewContext(ctx))
err = s.ds.GC(log.NewContext(ctx), s.rootFolder)
log.Info("Finished processing Music Folder", "folder", s.rootFolder, "elapsed", time.Since(start),
"added", s.cnt.added, "updated", s.cnt.updated, "deleted", s.cnt.deleted, "playlistsImported", plsCount)