From 75f64733f93c23aabf2d91829489101261363ec1 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Thu, 9 Nov 2017 13:46:47 +0100 Subject: [PATCH] lib/model: Use the new file name when requesting rescan If the file is not already in the database, the "curfile" will be empty and the rescan request cover the entire folder. --- lib/model/rwfolder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/model/rwfolder.go b/lib/model/rwfolder.go index 5ff00bc7d..8bf97769b 100644 --- a/lib/model/rwfolder.go +++ b/lib/model/rwfolder.go @@ -1386,7 +1386,7 @@ func (f *sendReceiveFolder) performFinish(state *sharedPullerState) error { // sweep is complete. As we do retries, we'll queue the scan // for this file up to ten times, but the last nine of those // scans will be cheap... - go f.Scan([]string{state.curFile.Name}) + go f.Scan([]string{state.file.Name}) return fmt.Errorf("file modified but not rescanned; will try again later") }