1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 17:57:16 +00:00

Allow some more characters for keywords

This commit is contained in:
M66B 2018-11-26 15:21:12 +01:00
parent 5b25eaadb7
commit 1226a5d1b8

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$_.]", "");
}
}