mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 11:28:41 +01:00
Allow some more characters for keywords
This commit is contained in:
@@ -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$_.]", "");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user