diff options
author | Erik Johnston <erik@matrix.org> | 2022-05-25 12:59:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 12:59:04 +0100 |
commit | 4660d9fdcffc833ae4774ac7d162e63769373dc5 (patch) | |
tree | 3782f599708de9e95abbaf4dab02ca9da5dcea33 /synapse/handlers/room.py | |
parent | Remove user-visible groups/communities code (#12553) (diff) | |
download | synapse-4660d9fdcffc833ae4774ac7d162e63769373dc5.tar.xz |
Fix up `state_store` naming (#12871)
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r-- | synapse/handlers/room.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index 92e1de0500..e2775b34f1 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -1193,7 +1193,7 @@ class RoomContextHandler: self.auth = hs.get_auth() self.store = hs.get_datastores().main self.storage = hs.get_storage() - self.state_store = self.storage.state + self.state_storage = self.storage.state self._relations_handler = hs.get_relations_handler() async def get_event_context( @@ -1293,7 +1293,7 @@ class RoomContextHandler: # first? Shouldn't we be consistent with /sync? # https://github.com/matrix-org/matrix-doc/issues/687 - state = await self.state_store.get_state_for_events( + state = await self.state_storage.get_state_for_events( [last_event_id], state_filter=state_filter ) |