mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Better naming for function
This commit is contained in:
parent
62fe1cdc43
commit
84384da8d1
1 changed files with 2 additions and 2 deletions
|
@ -88,7 +88,7 @@ func (s *TagScanner) Scan(ctx context.Context, lastModifiedSince time.Time) erro
|
||||||
}
|
}
|
||||||
allFSDirs[folderStats.Path] = folderStats
|
allFSDirs[folderStats.Path] = folderStats
|
||||||
|
|
||||||
if s.isChangedDirs(ctx, folderStats, allDBDirs, lastModifiedSince) {
|
if s.folderHasChanged(ctx, folderStats, allDBDirs, lastModifiedSince) {
|
||||||
changedDirs = append(changedDirs, folderStats.Path)
|
changedDirs = append(changedDirs, folderStats.Path)
|
||||||
log.Debug("Processing changed folder", "dir", folderStats.Path)
|
log.Debug("Processing changed folder", "dir", folderStats.Path)
|
||||||
err := s.processChangedDir(ctx, folderStats.Path)
|
err := s.processChangedDir(ctx, folderStats.Path)
|
||||||
|
@ -174,7 +174,7 @@ func (s *TagScanner) getDBDirTree(ctx context.Context) (map[string]struct{}, err
|
||||||
return resp, nil
|
return resp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *TagScanner) isChangedDirs(ctx context.Context, folder dirStats, dbDirs map[string]struct{}, lastModified time.Time) bool {
|
func (s *TagScanner) folderHasChanged(ctx context.Context, folder dirStats, dbDirs map[string]struct{}, lastModified time.Time) bool {
|
||||||
_, inDB := dbDirs[folder.Path]
|
_, inDB := dbDirs[folder.Path]
|
||||||
// If is a new folder with at least one song OR it was modified after lastModified
|
// If is a new folder with at least one song OR it was modified after lastModified
|
||||||
return (!inDB && (folder.AudioFilesCount > 0)) || folder.ModTime.After(lastModified)
|
return (!inDB && (folder.AudioFilesCount > 0)) || folder.ModTime.After(lastModified)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue