1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2024-12-12 09:04:06 +02:00
- Now our renamed/deleted files have been surely deleted again.
This commit is contained in:
vorotamoroz 2022-12-23 21:52:42 +09:00
parent 4dabadd5ea
commit 6b85aecafe

View File

@ -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 {