Browse Source

Fix unescaped period in webhook regex

pull/8429/head
Nihaal Sangha 3 years ago
committed by GitHub
parent
commit
3af6b9a1e9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/webhook/async_.py
  2. 2
      discord/webhook/sync.py

2
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<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.')

2
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<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.')

Loading…
Cancel
Save