mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 10:06:05 -04:00
Copy dict of context.current_state before changing it.
This commit is contained in:
parent
857810d2dd
commit
f1d2b94e0b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue