group is dict
parent
6362298fa5
commit
124314672f
|
@ -69,7 +69,7 @@ class GroupsServerHandler(object):
|
|||
raise SynapseError(404, "Unknown group")
|
||||
|
||||
is_user_in_group = yield self.store.is_user_in_group(requester_user_id, group_id)
|
||||
if group and not is_user_in_group and not group.is_public:
|
||||
if group and not is_user_in_group and not group["is_public"]:
|
||||
raise SynapseError(404, "Unknown group")
|
||||
|
||||
if and_is_admin:
|
||||
|
|
Loading…
Reference in New Issue