Browse Source

Support discord.com/invite URL in resolve_invite

pull/4178/head
apple502j 5 years ago
committed by GitHub
parent
commit
1ee23a235e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/utils.py

2
discord/utils.py

@ -431,7 +431,7 @@ def resolve_invite(invite):
if isinstance(invite, (Invite, Object)):
return invite.id
else:
rx = r'(?:https?\:\/\/)?discord(?:\.gg|app\.com\/invite)\/(.+)'
rx = r'(?:https?\:\/\/)?discord(?:\.gg|(?:app)?\.com\/invite)\/(.+)'
m = re.match(rx, invite)
if m:
return m.group(1)

Loading…
Cancel
Save