mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-08-31 07:08:55 +00:00
Fix problem with parseTextReference not recognising missing indices
This commit is contained in:
@@ -830,7 +830,7 @@ exports.parseTextReference = function(title,field,index,options) {
|
||||
}
|
||||
return this.parseText("text/vnd.tiddlywiki",text.toString(),options);
|
||||
} else if(index) {
|
||||
text = this.extractTiddlerDataItem(tiddler,index,"");
|
||||
text = this.extractTiddlerDataItem(tiddler,index,undefined);
|
||||
if(text === undefined) {
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user