Aevann 2024-05-21 02:30:22 +03:00
parent 7c8ddc5687
commit 898cb5ec46
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ def command_regex_matcher(match):
reason_regex_post = re.compile('(/post/[0-9]+)', flags=re.A)
reason_regex_comment = re.compile('(/comment/[0-9]+)', flags=re.A)
numbered_list_regex = re.compile('((\n|^)>*[0-9]+)[\.)] ', flags=re.A)
numbered_list_regex = re.compile('((\n|^)[> ]*[0-9]+)[\.)] ', flags=re.A)
image_link_regex = re.compile(f"https:\/\/(i\.)?{SITE}\/(chat_)?images\/[0-9]{{11,17}}r?\.webp", flags=re.A)