1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +00:00

Ignore shadow tiddlers in the syncer

This commit is contained in:
Jeremy Ruston 2013-04-30 22:55:06 +01:00
parent 6557ec8e1f
commit e875de63a9

View File

@ -211,11 +211,14 @@ Syncer.prototype.syncToServer = function(changes) {
var self = this, var self = this,
now = new Date(); now = new Date();
$tw.utils.each(changes,function(change,title,object) { $tw.utils.each(changes,function(change,title,object) {
// Ignore the change if it is a shadow tiddler
if((change.deleted && $tw.utils.hop(self.tiddlerInfo,title)) || (!change.deleted && self.wiki.tiddlerExists(title))) {
// Queue a task to sync this tiddler // Queue a task to sync this tiddler
self.enqueueSyncTask({ self.enqueueSyncTask({
type: change.deleted ? "delete" : "save", type: change.deleted ? "delete" : "save",
title: title title: title
}); });
}
}); });
}; };