Merge pull request #2599 from matrix-org/erikj/groups_invite

Fix typo when checking if user is invited to group
pull/2605/head
Erik Johnston 2017-10-27 17:34:54 +01:00 committed by GitHub
commit 71a1bd53b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -642,7 +642,10 @@ class GroupsServerHandler(object):
yield self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
if not self.store.is_user_invited_to_local_group(group_id, requester_user_id):
is_invited = yield self.store.is_user_invited_to_local_group(
group_id, requester_user_id,
)
if not is_invited:
raise SynapseError(403, "User not invited to group")
if not self.hs.is_mine_id(requester_user_id):