Fix unescaped period in webhook regex

This commit is contained in:
Nihaal Sangha
2022-08-30 05:53:28 +01:00
committed by GitHub
parent 2d180489ce
commit 3af6b9a1e9
2 changed files with 2 additions and 2 deletions

View File

@ -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<id>[0-9]{17,20})/(?P<token>[A-Za-z0-9\.\-\_]{60,68})', url)
m = re.search(r'discord(?:app)?\.com/api/webhooks/(?P<id>[0-9]{17,20})/(?P<token>[A-Za-z0-9\.\-\_]{60,68})', url)
if m is None:
raise ValueError('Invalid webhook URL given.')