deps update

This commit is contained in:
John Grosh
2020-01-28 21:00:57 -05:00
parent ae8b5cfe90
commit 338dafca0c
6 changed files with 24 additions and 12 deletions

View File

@@ -92,6 +92,9 @@ public class FormatUtil {
public static String filter(String input)
{
return input.replace("@everyone", "@\u0435veryone").replace("@here", "@h\u0435re").trim(); // cyrillic letter e
return input.replace("\u202E","")
.replace("@everyone", "@\u0435veryone") // cyrillic letter e
.replace("@here", "@h\u0435re") // cyrillic letter e
.trim();
}
}