diff --git a/src/duplicacy_entrylist.go b/src/duplicacy_entrylist.go index 6f21a5f..4f3e4ad 100644 --- a/src/duplicacy_entrylist.go +++ b/src/duplicacy_entrylist.go @@ -559,7 +559,7 @@ func loadIncompleteSnapshot(snapshotID string, cachePath string) *EntryList { // Delete the two incomplete files. func deleteIncompleteSnapshot(cachePath string) { - for _, file := range []string{"incomplete_snapshot", "incomplete_chunks"} { + for _, file := range []string{"incomplete_snapshot", "incomplete_chunks", "incomplete_files"} { filePath := path.Join(cachePath, file) if _, err := os.Stat(filePath); err == nil { err = os.Remove(filePath)