aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_core/utils/regex.py
diff options
context:
space:
mode:
Diffstat (limited to 'pydis_core/utils/regex.py')
-rw-r--r--pydis_core/utils/regex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_core/utils/regex.py b/pydis_core/utils/regex.py
index 88a4c52f..ba6b9b01 100644
--- a/pydis_core/utils/regex.py
+++ b/pydis_core/utils/regex.py
@@ -10,7 +10,7 @@ DISCORD_INVITE = re.compile(
r"(gg|me)" # TLDs that embed within discord
r"|com(\/|slash|\\)invite" # Only match com/invite
r")"
- r"(/|slash|\\)" # / or \ or 'slash'
+ r"(/|slash|\\+)" # / or 'slash' or 1+ of \
r"(?P<invite>\S+)", # the invite code itself
flags=re.IGNORECASE
)