mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-05 14:18:55 +01:00
Add missing param in store.get_state_groups invocation
This commit is contained in:
parent
b578c822e3
commit
3e9ee62db0
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue