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