summary refs log tree commit diff
path: root/synapse/handlers/message.py
diff options
context:
space:
mode:
authorShay <hillerys@element.io>2022-11-28 19:18:12 -0800
committerGitHub <noreply@github.com>2022-11-28 19:18:12 -0800
commit72f3e381375ba10d576a23025ca312397114de6b (patch)
tree3c3c1d40ddc2a372b0f56e0ef4998bf14ed659b7 /synapse/handlers/message.py
parentSupport MSC1767's `content.body` behaviour; Add base rules from MSC3933 (#14524) (diff)
downloadsynapse-72f3e381375ba10d576a23025ca312397114de6b.tar.xz
Fix possible variable shadow in `create_new_client_event` (#14575)
Diffstat (limited to 'synapse/handlers/message.py')
-rw-r--r--synapse/handlers/message.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py

index 4cf593cfdc..5cbe89f4fd 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py
@@ -1135,11 +1135,13 @@ class EventCreationHandler: ) state_events = await self.store.get_events_as_list(state_event_ids) # Create a StateMap[str] - state_map = {(e.type, e.state_key): e.event_id for e in state_events} + current_state_ids = { + (e.type, e.state_key): e.event_id for e in state_events + } # Actually strip down and only use the necessary auth events auth_event_ids = self._event_auth_handler.compute_auth_events( event=temp_event, - current_state_ids=state_map, + current_state_ids=current_state_ids, for_verification=False, )