Browse Source
Support discord.com/invite URL in resolve_invite
pull/4178/head
apple502j
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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) |
|
|
|