From 3af6b9a1e9bd65b57ea6899b43700b6fa3e91552 Mon Sep 17 00:00:00 2001 From: Nihaal Sangha Date: Tue, 30 Aug 2022 05:53:28 +0100 Subject: [PATCH] Fix unescaped period in webhook regex --- discord/webhook/async_.py | 2 +- discord/webhook/sync.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py index 8e002abe9..7e4286e89 100644 --- a/discord/webhook/async_.py +++ b/discord/webhook/async_.py @@ -1227,7 +1227,7 @@ class Webhook(BaseWebhook): A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token. """ - m = re.search(r'discord(?:app)?.com/api/webhooks/(?P[0-9]{17,20})/(?P[A-Za-z0-9\.\-\_]{60,68})', url) + m = re.search(r'discord(?:app)?\.com/api/webhooks/(?P[0-9]{17,20})/(?P[A-Za-z0-9\.\-\_]{60,68})', url) if m is None: raise ValueError('Invalid webhook URL given.') diff --git a/discord/webhook/sync.py b/discord/webhook/sync.py index 1eed37ee2..8cb5eb20e 100644 --- a/discord/webhook/sync.py +++ b/discord/webhook/sync.py @@ -683,7 +683,7 @@ class SyncWebhook(BaseWebhook): A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token. """ - m = re.search(r'discord(?:app)?.com/api/webhooks/(?P[0-9]{17,20})/(?P[A-Za-z0-9\.\-\_]{60,68})', url) + m = re.search(r'discord(?:app)?\.com/api/webhooks/(?P[0-9]{17,20})/(?P[A-Za-z0-9\.\-\_]{60,68})', url) if m is None: raise ValueError('Invalid webhook URL given.')