diff options
author | Luke Barnard <luke@matrix.org> | 2018-04-05 14:07:16 +0100 |
---|---|---|
committer | Luke Barnard <luke@matrix.org> | 2018-04-05 14:07:16 +0100 |
commit | 104c0bc1d5d1f2a487c50d63b22caa477b091976 (patch) | |
tree | c9fc64eca920ae4221efd0838c043e4956f7391f /synapse/federation/transport/client.py | |
parent | Use DEFAULT join_policy of "invite" in db (diff) | |
download | synapse-104c0bc1d5d1f2a487c50d63b22caa477b091976.tar.xz |
Use "/settings/" (plural)
Diffstat (limited to 'synapse/federation/transport/client.py')
-rw-r--r-- | synapse/federation/transport/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py index 0f7f656824..1fe162d55b 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -862,7 +862,7 @@ class TransportLayerClient(object): content): """Sets the join policy for a group """ - path = PREFIX + "/groups/%s/setting/m.join_policy" % (group_id,) + path = PREFIX + "/groups/%s/settings/m.join_policy" % (group_id,) return self.client.post_json( destination=destination, |