From 7eb83010200c926de94496d9d9427cd1bea0d760 Mon Sep 17 00:00:00 2001 From: Andrey Yankin Date: Fri, 31 Oct 2014 10:24:49 +0300 Subject: [PATCH] Lazy loading should be forced for indexing also --- core/modules/wiki.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/modules/wiki.js b/core/modules/wiki.js index 10ec56f21..455c29e09 100755 --- a/core/modules/wiki.js +++ b/core/modules/wiki.js @@ -844,6 +844,7 @@ exports.parseTextReference = function(title,field,index,options) { } return this.parseText("text/vnd.tiddlywiki",text.toString(),options); } else if(index) { + this.getTiddlerText(title); // Force the tiddler to be lazily loaded text = this.extractTiddlerDataItem(tiddler,index,undefined); if(text === undefined) { return null;