mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-02-18 12:30:59 +03:00
Add new format to resolve invite link (#1670)
This commit is contained in:
parent
82d25a7e52
commit
c0ed709adf
|
@ -1289,8 +1289,14 @@ def resolve_invite_link(link):
|
||||||
payload = _decode_telegram_base64(link_hash)
|
payload = _decode_telegram_base64(link_hash)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
if len(payload) == 12:
|
||||||
|
return 0, *struct.unpack('>LQ', payload)
|
||||||
|
elif len(payload) == 16:
|
||||||
return struct.unpack('>LLQ', payload)
|
return struct.unpack('>LLQ', payload)
|
||||||
|
else:
|
||||||
|
pass
|
||||||
except (struct.error, TypeError):
|
except (struct.error, TypeError):
|
||||||
|
pass
|
||||||
return None, None, None
|
return None, None, None
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user