Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix POST /groups/:group/room/:room/config/:config fed API
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Jan 30, 2020
1 parent a855b7c commit 8ca12a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/federation/transport/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ async def on_POST(self, origin, content, query, group_id, room_id, config_key):
if get_domain_from_id(requester_user_id) != origin:
raise SynapseError(403, "requester_user_id doesn't match origin")

result = await self.groups_handler.update_room_in_group(
result = await self.handler.update_room_in_group(
group_id, requester_user_id, room_id, config_key, content
)

Expand Down

0 comments on commit 8ca12a7

Please sign in to comment.