Fix offline → online not sending pending message
This commit is contained in:
parent
79fdc710c3
commit
f018b9567b
|
@ -522,8 +522,10 @@ class MatrixClient(nio.AsyncClient):
|
|||
mentions = mentions,
|
||||
)
|
||||
|
||||
presence = self.models["accounts"][self.user_id].presence
|
||||
while presence == Presence.State.offline:
|
||||
while (
|
||||
self.models["accounts"][self.user_id].presence ==
|
||||
Presence.State.offline
|
||||
):
|
||||
await asyncio.sleep(0.2)
|
||||
|
||||
await self._send_message(room_id, content, tx_id)
|
||||
|
|
Loading…
Reference in New Issue
Block a user