1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-03 17:26:56 +00:00

Lazy loading a tiddler should trigger a sync

Fixes #7138
This commit is contained in:
jeremy@jermolene.com 2023-01-03 14:28:48 +00:00
parent 6f9cf20e77
commit 8ca0bf10e4

View File

@ -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();
}
}
};