mirror of https://github.com/M66B/FairEmail.git
Allow some more characters for keywords
This commit is contained in:
parent
5b25eaadb7
commit
1226a5d1b8
|
@ -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$_.]", "");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue