mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 21:24:51 -04:00
Merge branch 'release-v0.6.0' into develop
This commit is contained in:
commit
56db465047
10 changed files with 194 additions and 53 deletions
|
@ -203,9 +203,10 @@ class StateHandler(object):
|
|||
}
|
||||
|
||||
if event_type:
|
||||
prev_states = conflicted_state.get(
|
||||
(event_type, state_key), {}
|
||||
).keys()
|
||||
prev_states_events = conflicted_state.get(
|
||||
(event_type, state_key), []
|
||||
)
|
||||
prev_states = [s.event_id for s in prev_states_events]
|
||||
else:
|
||||
prev_states = []
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue