Revert "lib/model: Use the new file name when requesting rescan"

This has consequences that I haven't thought through for case mismatches
(i.e. we have foo.txt in the database and queue a rescan for FOO.txt).
This commit is contained in:
Jakob Borg 2017-11-09 13:55:45 +01:00
parent 75f64733f9
commit a9d422e008

View File

@ -1386,7 +1386,7 @@ func (f *sendReceiveFolder) performFinish(state *sharedPullerState) error {
// sweep is complete. As we do retries, we'll queue the scan // 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 // for this file up to ten times, but the last nine of those
// scans will be cheap... // scans will be cheap...
go f.Scan([]string{state.file.Name}) go f.Scan([]string{state.curFile.Name})
return fmt.Errorf("file modified but not rescanned; will try again later") return fmt.Errorf("file modified but not rescanned; will try again later")
} }