diff options
author | Erik Johnston <erik@matrix.org> | 2016-09-05 14:57:14 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-09-05 14:57:14 +0100 |
commit | 70332a12dd0a2ea01e1f8f835dcb5ca15526a5f3 (patch) | |
tree | 49d53c94687b23c3631062668f37c9ce36973a39 /synapse/storage/events.py | |
parent | Comment about sqlite and WITH RECURSIVE (diff) | |
download | synapse-70332a12dd0a2ea01e1f8f835dcb5ca15526a5f3.tar.xz |
Take value in a better way
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r-- | synapse/storage/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index bec35ea68d..ed182c8d11 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -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, |