3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00

automod: fix normalize not trimming whitespace in ascii-only messages

This commit is contained in:
Dragory 2020-09-16 22:33:24 +03:00
parent baa3a5640e
commit 7562a886e1
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -150,7 +150,7 @@ const REPLACED_CHARS: Record<string, RegExp> = Array.from(Object.entries(REPLACE
{},
);
const NORMAL_CHARS_REGEX = /^[a-z2689:.\-_+()*&^%><;"'}{~,\s]+$/i;
const NORMAL_CHARS_REGEX = /^[a-z2689:.\-_+()*&^%><;"'}{~,]+$/i;
function containsOnlyNormalChars(text: string) {
return NORMAL_CHARS_REGEX.test(text);