Fix bugs which broke federation due to changes in function signatures.

This commit is contained in:
Erik Johnston 2014-11-11 14:19:13 +00:00
parent 02ebb9f0c3
commit 092979b8cc
2 changed files with 3 additions and 3 deletions

View file

@ -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