Allow some more characters for keywords

This commit is contained in:
M66B 2018-11-26 15:21:12 +01:00
parent 5b25eaadb7
commit 1226a5d1b8
1 changed files with 1 additions and 1 deletions

View File

@ -448,6 +448,6 @@ public class Helper {
static String sanitizeKeyword(String keyword) {
// ()}%*"\]
return keyword.replaceAll("[^A-Za-z0-9]", "");
return keyword.replaceAll("[^A-Za-z0-9$_.]", "");
}
}