Copy dict of context.current_state before changing it.

This commit is contained in:
Erik Johnston 2015-03-16 15:13:05 +00:00
parent 857810d2dd
commit f1d2b94e0b

View file

@ -82,7 +82,7 @@ class StateStore(SQLBaseStore):
if context.current_state is None:
return
state_events = context.current_state
state_events = dict(context.current_state)
if event.is_state():
state_events[(event.type, event.state_key)] = event