Enable real sync deletions on client

This commit is contained in:
2024-05-16 18:14:57 -04:00
parent 77726e9af3
commit 1ca55b8ac6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -182,7 +182,7 @@ func syncLists(localEntryModMap, remoteEntryModMap map[string]int64) {
func deletionSync(deletions []string) {
for _, deletion := range deletions {
fmt.Println(ansiDelete+deletion+backend.AnsiReset, "has been sheared, removing...")
//os.RemoveAll(backend.EntryRoot + deletion) TODO uncomment after testing
os.RemoveAll(backend.EntryRoot + deletion)
}
}