mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-25 07:09:40 -05:00
Take value in a better way
This commit is contained in:
parent
373654c635
commit
70332a12dd
@ -1616,7 +1616,7 @@ class EventsStore(SQLBaseStore):
|
|||||||
curr_state = self._get_state_groups_from_groups_txn(
|
curr_state = self._get_state_groups_from_groups_txn(
|
||||||
txn, [new_state_edge], types=None
|
txn, [new_state_edge], types=None
|
||||||
)
|
)
|
||||||
curr_state = curr_state.values()[0]
|
curr_state = curr_state[new_state_edge]
|
||||||
|
|
||||||
self._simple_delete_txn(
|
self._simple_delete_txn(
|
||||||
txn,
|
txn,
|
||||||
|
@ -693,12 +693,12 @@ class StateStore(SQLBaseStore):
|
|||||||
prev_state = self._get_state_groups_from_groups_txn(
|
prev_state = self._get_state_groups_from_groups_txn(
|
||||||
txn, [prev_group], types=None
|
txn, [prev_group], types=None
|
||||||
)
|
)
|
||||||
prev_state = prev_state.values()[0]
|
prev_state = prev_state[prev_group]
|
||||||
|
|
||||||
curr_state = self._get_state_groups_from_groups_txn(
|
curr_state = self._get_state_groups_from_groups_txn(
|
||||||
txn, [state_group], types=None
|
txn, [state_group], types=None
|
||||||
)
|
)
|
||||||
curr_state = curr_state.values()[0]
|
curr_state = curr_state[state_group]
|
||||||
|
|
||||||
if not set(prev_state.keys()) - set(curr_state.keys()):
|
if not set(prev_state.keys()) - set(curr_state.keys()):
|
||||||
# We can only do a delta if the current has a strict super set
|
# We can only do a delta if the current has a strict super set
|
||||||
|
Loading…
Reference in New Issue
Block a user