1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

All: Fixes #85: Don't record deleted_items entries for folders deleted via sync

This commit is contained in:
Laurent Cozic
2018-01-15 18:10:14 +00:00
parent d1f1d1068a
commit 961b5bfd25
3 changed files with 28 additions and 1 deletions

View File

@@ -585,7 +585,7 @@ class Synchronizer {
if (noteIds.length) { // CONFLICT
await Folder.markNotesAsConflict(item.id);
}
await Folder.delete(item.id, { deleteChildren: false });
await Folder.delete(item.id, { deleteChildren: false, trackDeleted: false });
}
}