mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-16 00:23:50 +01:00
Fix merge fail with anon access stuff
This commit is contained in:
parent
d79e90f078
commit
d2a92c6bde
1 changed files with 2 additions and 2 deletions
|
@ -520,11 +520,11 @@ class SyncHandler(BaseHandler):
|
||||||
# this users current read receipt. This could almost certainly be
|
# this users current read receipt. This could almost certainly be
|
||||||
# optimised.
|
# optimised.
|
||||||
_, all_ephemeral_by_room = yield self.ephemeral_by_room(
|
_, all_ephemeral_by_room = yield self.ephemeral_by_room(
|
||||||
sync_config, now_token
|
sync_config, now_token, room_ids
|
||||||
)
|
)
|
||||||
|
|
||||||
now_token, ephemeral_by_room = yield self.ephemeral_by_room(
|
now_token, ephemeral_by_room = yield self.ephemeral_by_room(
|
||||||
sync_config, now_token, since_token
|
sync_config, now_token, room_ids, since_token
|
||||||
)
|
)
|
||||||
|
|
||||||
rm_handler = self.hs.get_handlers().room_member_handler
|
rm_handler = self.hs.get_handlers().room_member_handler
|
||||||
|
|
Loading…
Reference in a new issue