1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-30 16:00:46 +00:00

Fixed problem with field filter operator not performing string comparisons

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

View File

@ -21,7 +21,7 @@ exports.field = function(source,operator,options) {
function checkTiddler(title) {
var tiddler = options.wiki.getTiddler(title);
if(tiddler) {
var match = tiddler.fields[operator.operator] === operator.operand;
var match = tiddler.getFieldString(operator.operator) === operator.operand;
if(operator.prefix === "!") {
match = !match;
}