mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-08-05 03:22:29 +00:00
Add new format to resolve invite link (#1670)
This commit is contained in:
@@ -1289,9 +1289,15 @@ def resolve_invite_link(link):
|
||||
payload = _decode_telegram_base64(link_hash)
|
||||
|
||||
try:
|
||||
return struct.unpack('>LLQ', payload)
|
||||
if len(payload) == 12:
|
||||
return 0, *struct.unpack('>LQ', payload)
|
||||
elif len(payload) == 16:
|
||||
return struct.unpack('>LLQ', payload)
|
||||
else:
|
||||
pass
|
||||
except (struct.error, TypeError):
|
||||
return None, None, None
|
||||
pass
|
||||
return None, None, None
|
||||
|
||||
|
||||
def resolve_inline_message_id(inline_msg_id):
|
||||
|
Reference in New Issue
Block a user