shared: LooqsQuery: Add implicit AND also for lone words
This commit is contained in:
parent
c11fd1a9ff
commit
076c3c4c7f
@ -320,7 +320,7 @@ LooqsQuery LooqsQuery::build(QString expression, TokenType loneWordsTokenType, b
|
|||||||
QVector<Token> newTokens;
|
QVector<Token> newTokens;
|
||||||
|
|
||||||
TokenType prevType = BOOL_AND;
|
TokenType prevType = BOOL_AND;
|
||||||
int needsBoolean = FILTER_CONTENT | FILTER_PATH | NEGATION;
|
int needsBoolean = FILTER_CONTENT | FILTER_PATH | NEGATION | WORD;
|
||||||
for(Token &t : result.tokens)
|
for(Token &t : result.tokens)
|
||||||
{
|
{
|
||||||
if(t.type == BRACKET_OPEN || t.type & needsBoolean)
|
if(t.type == BRACKET_OPEN || t.type & needsBoolean)
|
||||||
|
Loading…
Reference in New Issue
Block a user