Get group_info from existing call to check_group_is_ours

This commit is contained in:
Luke Barnard 2018-04-05 17:16:31 +01:00
parent cd087a265d
commit 6850f8aea3

View File

@ -741,11 +741,7 @@ class GroupsServerHandler(object):
This will error if the group requires an invite/knock to join
"""
yield self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
group_info = yield self.store.get_group(
group_id,
)
group_info = yield self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
if group_info['join_policy'] != "open":
raise SynapseError(403, "Group is not publicly joinable")