1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-05 02:06:56 +00:00

Fixed problem with getTextReference() not always returning a string

This commit is contained in:
Jeremy Ruston 2013-05-27 17:55:23 +01:00
parent 562591912e
commit 31a4b96f57

View File

@ -37,7 +37,7 @@ exports.getTextReference = function(textRef,defaultText,currTiddlerTitle) {
if(tr.field) {
var tiddler = this.getTiddler(title);
if(tiddler && $tw.utils.hop(tiddler.fields,tr.field)) {
return tiddler.fields[tr.field];
return tiddler.getFieldString(tr.field);
} else {
return defaultText;
}