mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-13 00:16:16 +00:00
Escape the object id being used in the query filter.
This commit is contained in:
parent
11c2e2b71b
commit
cc97d0dc4b
@ -73,7 +73,7 @@ class KeywordQueryFilter {
|
|||||||
}
|
}
|
||||||
sb.append(id);
|
sb.append(id);
|
||||||
sb.append(":");
|
sb.append(":");
|
||||||
sb.append(Long.toString(idVal));
|
sb.append(KeywordSearchUtil.escapeLuceneQuery(Long.toString(idVal)));
|
||||||
if (filterType == FilterType.CHUNK) {
|
if (filterType == FilterType.CHUNK) {
|
||||||
sb.append("_*");
|
sb.append("_*");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user