mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-11-15 00:10:42 -05:00
Take value in a better way
This commit is contained in:
parent
373654c635
commit
70332a12dd
2 changed files with 3 additions and 3 deletions
|
|
@ -1616,7 +1616,7 @@ class EventsStore(SQLBaseStore):
|
|||
curr_state = self._get_state_groups_from_groups_txn(
|
||||
txn, [new_state_edge], types=None
|
||||
)
|
||||
curr_state = curr_state.values()[0]
|
||||
curr_state = curr_state[new_state_edge]
|
||||
|
||||
self._simple_delete_txn(
|
||||
txn,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue