Clear out user if not authorized

This commit is contained in:
Lonami Exo 2023-09-01 14:41:51 +02:00
parent cc65ee473e
commit 201497b638

View File

@ -125,7 +125,10 @@ async def connect(self: Client) -> None:
if self._message_box.is_empty() and self._config.session.user:
try:
await self(functions.updates.get_state())
except Exception:
except RpcError as e:
if e.code == 401:
self._config.session.user = None
except Exception as e:
pass