Add missing await
This commit is contained in:
parent
095641fe08
commit
128979e06b
|
@ -1866,7 +1866,7 @@ class Portal(DBPortal, BasePortal):
|
||||||
self.log.trace("Leaving room with %s post-backfill", intent.mxid)
|
self.log.trace("Leaving room with %s post-backfill", intent.mxid)
|
||||||
await intent.leave_room(self.mxid)
|
await intent.leave_room(self.mxid)
|
||||||
self.log.info("Backfilled %d messages through %s", len(chats), source.mxid)
|
self.log.info("Backfilled %d messages through %s", len(chats), source.mxid)
|
||||||
self._sync_read_receipts(source)
|
await self._sync_read_receipts(source)
|
||||||
|
|
||||||
# region Database getters
|
# region Database getters
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue