summary refs log tree commit diff
path: root/synapse/state.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-11-11 14:19:13 +0000
committerErik Johnston <erik@matrix.org>2014-11-11 14:19:13 +0000
commit092979b8cca4c602c54e1b39ee15c8ce030e949d (patch)
tree955e95fa96aec11ca3f776a977f1f6438f7fd111 /synapse/state.py
parentFix state tests (diff)
downloadsynapse-092979b8cca4c602c54e1b39ee15c8ce030e949d.tar.xz
Fix bugs which broke federation due to changes in function signatures.
Diffstat (limited to '')
-rw-r--r--synapse/state.py2
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