0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-19 16:19:00 +02:00

Fix bug where current_state_events renamed to current_state_ids

This commit is contained in:
Erik Johnston 2017-01-23 15:22:48 +00:00
parent 3d9d48fffb
commit 41dab8a222

View file

@ -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 = {}