diff options
author | Erik Johnston <erik@matrix.org> | 2021-03-17 13:20:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 13:20:08 +0000 |
commit | ad721fc559b4af6140852adf58c93ae6ab0bf6b5 (patch) | |
tree | e59be4517618e3f7df56d82bc4fe86690198a889 /synapse/handlers/sync.py | |
parent | Prep work for removing `outlier` from `internal_metadata` (#9411) (diff) | |
download | synapse-ad721fc559b4af6140852adf58c93ae6ab0bf6b5.tar.xz |
Fix bad naming of storage function (#9637)
We had two functions named `get_forward_extremities_for_room` and `get_forward_extremeties_for_room` that took different paramters. We rename one of them to avoid confusion.
Diffstat (limited to 'synapse/handlers/sync.py')
-rw-r--r-- | synapse/handlers/sync.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py index f50257cd57..7b723ead58 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py @@ -1979,8 +1979,10 @@ class SyncHandler: logger.info("User joined room after current token: %s", room_id) - extrems = await self.store.get_forward_extremeties_for_room( - room_id, event_pos.stream + extrems = ( + await self.store.get_forward_extremities_for_room_at_stream_ordering( + room_id, event_pos.stream + ) ) users_in_room = await self.state.get_current_users_in_room(room_id, extrems) if user_id in users_in_room: |