mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 21:04:50 -04:00
More bug fixes
This commit is contained in:
parent
ee3df06183
commit
609c31e8df
5 changed files with 35 additions and 30 deletions
|
@ -160,13 +160,13 @@ class StateHandler(object):
|
|||
group, curr_state, prev_state = ret
|
||||
|
||||
context.current_state = curr_state
|
||||
context.state_group = group
|
||||
context.state_group = group if not event.is_state() else None
|
||||
|
||||
prev_state = yield self.store.add_event_hashes(
|
||||
prev_state
|
||||
)
|
||||
|
||||
if hasattr(event, "auth_events") and event.auth_events:
|
||||
if hasattr(event, "auth_events"):
|
||||
auth_ids = zip(*event.auth_events)[0]
|
||||
context.auth_events = {
|
||||
k: v
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue