1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-06 02:24:30 +00:00

(TSK-309) False positives when searching for Arabic word

This also fixes getting correct results back for the non-regex search. Regex search already seemed to have worked correctly.
This commit is contained in:
adam-m
2012-01-19 13:31:44 -05:00
parent 118bcf2b40
commit f6a52eebc4

View File

@@ -56,7 +56,7 @@ public class LuceneQuery implements KeywordSearchQuery {
@Override
public void escape() {
queryEscaped = KeywordSearchUtil.escapeLuceneQuery(query, true, true);
queryEscaped = KeywordSearchUtil.escapeLuceneQuery(query, true, false);
isEscaped = true;
}