You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
Get it working with deleted items
This commit is contained in:
@ -225,6 +225,12 @@ void Synchronizer::api_requestDone(const QJsonObject& response, const QString& t
|
||||
folder.patchJsonObject(item);
|
||||
folder.save(false);
|
||||
}
|
||||
|
||||
if (operationType == "delete") {
|
||||
Folder folder;
|
||||
folder.load(itemId);
|
||||
folder.dispose();
|
||||
}
|
||||
}
|
||||
|
||||
if (revId > maxRevId) maxRevId = revId;
|
||||
|
Reference in New Issue
Block a user