From 41dab8a22236691c34d8db283e80483470ee8fce Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Mon, 23 Jan 2017 15:22:48 +0000 Subject: [PATCH] Fix bug where current_state_events renamed to current_state_ids --- synapse/state.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/synapse/state.py b/synapse/state.py index 383d32b163..29e7604322 100644 --- a/synapse/state.py +++ b/synapse/state.py @@ -200,11 +200,11 @@ class StateHandler(object): (s.type, s.state_key): s.event_id for s in old_state } if event.is_state(): - context.current_state_events = dict(context.prev_state_ids) + context.current_state_ids = dict(context.prev_state_ids) key = (event.type, event.state_key) - context.current_state_events[key] = event.event_id + context.current_state_ids[key] = event.event_id else: - context.current_state_events = context.prev_state_ids + context.current_state_ids = context.prev_state_ids else: context.current_state_ids = {} context.prev_state_ids = {}