mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-04-05 09:44:13 +03:00
Assert hash is not None when migrating from JSON sessions
This commit is contained in:
parent
146a91f837
commit
045f7f5643
|
@ -163,7 +163,8 @@ class Session:
|
|||
|
||||
rows = []
|
||||
for p_id, p_hash in data.get('entities', []):
|
||||
rows.append((p_id, p_hash, None, None, None))
|
||||
if p_hash is not None:
|
||||
rows.append((p_id, p_hash, None, None, None))
|
||||
return rows
|
||||
except UnicodeDecodeError:
|
||||
return [] # No entities
|
||||
|
|
Loading…
Reference in New Issue
Block a user