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:
parent
5b25eaadb7
commit
1226a5d1b8
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue