diff options
author | Erik Johnston <erik@matrix.org> | 2014-11-11 14:19:13 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-11-11 14:19:13 +0000 |
commit | 092979b8cca4c602c54e1b39ee15c8ce030e949d (patch) | |
tree | 955e95fa96aec11ca3f776a977f1f6438f7fd111 /synapse/state.py | |
parent | Fix state tests (diff) | |
download | synapse-092979b8cca4c602c54e1b39ee15c8ce030e949d.tar.xz |
Fix bugs which broke federation due to changes in function signatures.
Diffstat (limited to 'synapse/state.py')
-rw-r--r-- | synapse/state.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/state.py b/synapse/state.py index a58acb3c1e..11c54fd38c 100644 --- a/synapse/state.py +++ b/synapse/state.py @@ -105,7 +105,7 @@ class StateHandler(object): defer.returnValue(res[1].get((event_type, state_key))) return - defer.returnValue(res.values()) + defer.returnValue(res[1].values()) @defer.inlineCallbacks @log_function |