forked from MirrorHub/synapse
Get group_info from existing call to check_group_is_ours
This commit is contained in:
parent
cd087a265d
commit
6850f8aea3
1 changed files with 1 additions and 5 deletions
|
@ -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")
|
||||
|
||||
|
|
Loading…
Reference in a new issue