From 6b85aecafe4fdd0341ae16d7c069ee99b1abe354 Mon Sep 17 00:00:00 2001 From: vorotamoroz Date: Fri, 23 Dec 2022 21:52:42 +0900 Subject: [PATCH] Fixed: - Now our renamed/deleted files have been surely deleted again. --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index f70f8f6..097abf3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1382,7 +1382,7 @@ export default class ObsidianLiveSyncPlugin extends Plugin { await this.doc2storage_modify(doc, file); queueConflictCheck(); } else { - const d = await this.localDatabase.getDBEntryMeta(id2path(change._id), { conflicts: true }) + const d = await this.localDatabase.getDBEntryMeta(id2path(change._id), { conflicts: true }, true); if (d && !d._conflicts) { await this.doc2storage_modify(doc, file); } else {