From 8ca0bf10e4eebd11c47d5d6eda2fa7dd967a80ed Mon Sep 17 00:00:00 2001 From: "jeremy@jermolene.com" Date: Tue, 3 Jan 2023 14:28:48 +0000 Subject: [PATCH] Lazy loading a tiddler should trigger a sync Fixes #7138 --- core/modules/syncer.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/modules/syncer.js b/core/modules/syncer.js index 595f35a7f..c06fcb143 100644 --- a/core/modules/syncer.js +++ b/core/modules/syncer.js @@ -402,6 +402,7 @@ Syncer.prototype.handleLazyLoadEvent = function(title) { // Mark the tiddler as needing loading, and having already been lazily loaded this.titlesToBeLoaded[title] = true; this.titlesHaveBeenLazyLoaded[title] = true; + this.processTaskQueue(); } } };