diff options
author | Erik Johnston <erik@matrix.org> | 2017-07-18 16:38:54 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-07-18 16:38:54 +0100 |
commit | 94ecd871a047707da5998f83440c039d064de8aa (patch) | |
tree | 833c925ca72ddcef96797a2d78973ebd9a24451b /synapse/handlers/groups_local.py | |
parent | Correctly parse query params (diff) | |
download | synapse-94ecd871a047707da5998f83440c039d064de8aa.tar.xz |
Fix typos
Diffstat (limited to 'synapse/handlers/groups_local.py')
-rw-r--r-- | synapse/handlers/groups_local.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/synapse/handlers/groups_local.py b/synapse/handlers/groups_local.py index 7d7fc5d976..50f7fce885 100644 --- a/synapse/handlers/groups_local.py +++ b/synapse/handlers/groups_local.py @@ -159,7 +159,7 @@ class GroupsLocalHandler(object): ) defer.returnValue(res) - res = yield self.transport_client.get_group_users( + res = yield self.transport_client.get_users_in_group( get_domain_from_id(group_id), group_id, requester_user_id, ) @@ -278,7 +278,8 @@ class GroupsLocalHandler(object): else: content["requester_user_id"] = requester_user_id res = yield self.transport_client.remove_user_from_group( - get_domain_from_id(group_id), group_id, user_id, content + get_domain_from_id(group_id), group_id, requester_user_id, + user_id, content, ) defer.returnValue(res) |