diff options
author | Erik Johnston <erik@matrix.org> | 2017-07-18 14:37:06 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-07-18 14:37:06 +0100 |
commit | e5ea6dd021ea71f3b5bc9a37fb896c351ee550b1 (patch) | |
tree | 421a99c5445d9fa96bf3117c4f9f22cc669fea18 /synapse/handlers/groups_local.py | |
parent | Comments (diff) | |
download | synapse-e5ea6dd021ea71f3b5bc9a37fb896c351ee550b1.tar.xz |
Add client apis
Diffstat (limited to 'synapse/handlers/groups_local.py')
-rw-r--r-- | synapse/handlers/groups_local.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/groups_local.py b/synapse/handlers/groups_local.py index 0857b14c7a..6962210526 100644 --- a/synapse/handlers/groups_local.py +++ b/synapse/handlers/groups_local.py @@ -224,7 +224,7 @@ class GroupsLocalHandler(object): ) else: res = yield self.transport_client.invite_to_group( - group_id, user_id, content, + group_id, user_id, requester_user_id, content, ) defer.returnValue(res) |