From 84c605bf316fb84733b837a21ffac4cbc3edab46 Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 8 Mar 2024 07:11:36 +0200 Subject: [PATCH] fix 502 error --- files/helpers/regex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/regex.py b/files/helpers/regex.py index d5ff3fbef..77f078d01 100644 --- a/files/helpers/regex.py +++ b/files/helpers/regex.py @@ -9,7 +9,7 @@ valid_username_regex = re.compile("^[\w-]{3,25}$", flags=re.A) valid_username_patron_regex = re.compile("^[\w-]{1,25}$", flags=re.A) mention_regex = re.compile('(?)!(everyone)' + NOT_IN_CODE_OR_LINKS, flags=re.A)