From 4ea79cb0c34fa488dfa3e6782f1f3c3fa57237f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodr=C3=ADguez=20Rivero?= Date: Mon, 20 Apr 2020 12:17:27 +0200 Subject: [PATCH] fix(syncer): restore tiddlerInfo param to saveTiddler (#4584) This was added on a159b5baf3ad91d8defc68cbf81c78d01b69c416 and lost in #4373. Will be a good idea to introduce tests against this kind of changes --- core/modules/syncer.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/modules/syncer.js b/core/modules/syncer.js index 903bb0a4b..a11f91a0a 100644 --- a/core/modules/syncer.js +++ b/core/modules/syncer.js @@ -581,6 +581,8 @@ SaveTiddlerTask.prototype.run = function(callback) { }; // Invoke the callback callback(null); + },{ + tiddlerInfo: self.tiddlerInfo[task.title] }); } else { this.syncer.logger.log(" Not Dispatching 'save' task:",this.title,"tiddler does not exist");