diff options
author | Luke Barnard <luke@matrix.org> | 2018-04-05 16:31:24 +0100 |
---|---|---|
committer | Luke Barnard <luke@matrix.org> | 2018-04-06 15:43:27 +0100 |
commit | f8d1917fce3b08b613f76131d6a82a7576379251 (patch) | |
tree | a96b77a49de5118ee7a13267d7fe2cc360e84d36 /synapse/federation | |
parent | Factor out add_user from accept_invite and join_group (diff) | |
download | synapse-f8d1917fce3b08b613f76131d6a82a7576379251.tar.xz |
Fix federation client `set_group_joinable` typo
Diffstat (limited to 'synapse/federation')
-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 370f7ba78b..67ff7da51b 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -871,7 +871,7 @@ class TransportLayerClient(object): ) @log_function - def set_group_joinable(self, destination, group_id, requester_user_id, + def set_group_join_policy(self, destination, group_id, requester_user_id, content): """Sets the join policy for a group """ |