0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-04 10:18:52 +02:00

Add missing param in store.get_state_groups invocation

This commit is contained in:
Erik Johnston 2015-08-21 09:15:13 +01:00
parent b578c822e3
commit 3e9ee62db0

View file

@ -874,7 +874,7 @@ class FederationHandler(BaseHandler):
raise AuthError(403, "Host not in room.") raise AuthError(403, "Host not in room.")
state_groups = yield self.store.get_state_groups( state_groups = yield self.store.get_state_groups(
[event_id] room_id, [event_id]
) )
if state_groups: if state_groups: