1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-29 08:43:14 +00:00

Delete syncer tiddlerInfo when tiddlers are deleted

This commit is contained in:
Jermolene 2014-09-24 16:21:59 +02:00
parent e2046ce4ff
commit eacb9e53eb

View File

@ -495,6 +495,7 @@ Syncer.prototype.dispatchTask = function(task,callback) {
if(err) { if(err) {
return callback(err); return callback(err);
} }
delete self.tiddlerInfo[task.title];
// Invoke the callback // Invoke the callback
callback(null); callback(null);
},{ },{