mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-04-19 09:12:08 -05:00
fix parsing of "!=" operator, #1651
This commit is contained in:
@@ -41,7 +41,7 @@ function getFulltext(tokens, searchContext) {
|
||||
}
|
||||
|
||||
function isOperator(str) {
|
||||
return str.match(/^[=<>*]+$/);
|
||||
return str.match(/^[!=<>*]+$/);
|
||||
}
|
||||
|
||||
function getExpression(tokens, searchContext, level = 0) {
|
||||
|
||||
Reference in New Issue
Block a user