fix parsing of "!=" operator, #1651

This commit is contained in:
zadam 2021-02-17 23:41:15 +01:00
parent ec2e973165
commit 600a312b2a

View File

@ -41,7 +41,7 @@ function getFulltext(tokens, searchContext) {
} }
function isOperator(str) { function isOperator(str) {
return str.match(/^[=<>*]+$/); return str.match(/^[!=<>*]+$/);
} }
function getExpression(tokens, searchContext, level = 0) { function getExpression(tokens, searchContext, level = 0) {