diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-21 09:15:13 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-21 09:15:13 +0100 |
commit | 3e9ee62db0bfb3991254f7152b70491cbda385b1 (patch) | |
tree | 7fff7b87e47c6f8518610a76d16e8cce1ccb14fc /synapse/handlers/federation.py | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into release-v0.10.0 (diff) | |
download | synapse-3e9ee62db0bfb3991254f7152b70491cbda385b1.tar.xz |
Add missing param in store.get_state_groups invocation
Diffstat (limited to 'synapse/handlers/federation.py')
-rw-r--r-- | synapse/handlers/federation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/federation.py b/synapse/handlers/federation.py index 1e3dccf5a8..4ff20599d6 100644 --- a/synapse/handlers/federation.py +++ b/synapse/handlers/federation.py @@ -874,7 +874,7 @@ class FederationHandler(BaseHandler): raise AuthError(403, "Host not in room.") state_groups = yield self.store.get_state_groups( - [event_id] + room_id, [event_id] ) if state_groups: |