From e07152b6955558dbbca373cd98b46c0ffa3aae5e Mon Sep 17 00:00:00 2001 From: Deluan Date: Sun, 1 Nov 2020 23:25:34 -0500 Subject: [PATCH] Process empty folders as changed folders This is a workaround for rclone not changing the directory modtime when you delete all folders from it (happens when you are moveing things around with beets) --- scanner/tag_scanner.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scanner/tag_scanner.go b/scanner/tag_scanner.go index 722161d2c..784eb43ac 100644 --- a/scanner/tag_scanner.go +++ b/scanner/tag_scanner.go @@ -185,8 +185,8 @@ func (s *TagScanner) getDBDirTree(ctx context.Context) (map[string]struct{}, err func (s *TagScanner) folderHasChanged(ctx context.Context, folder dirStats, dbDirs map[string]struct{}, lastModified time.Time) bool { _, inDB := dbDirs[folder.Path] - // 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) + // If is a new folder with at least one song OR it is empty OR it was modified after lastModified + return (!inDB && (folder.AudioFilesCount > 0)) || folder.AudioFilesCount == 0 || folder.ModTime.After(lastModified) } func (s *TagScanner) getDeletedDirs(ctx context.Context, fsDirs dirMap, dbDirs map[string]struct{}) []string {