group is dict

pull/2582/head
Luke Barnard 2017-10-27 11:08:19 +01:00
parent 6362298fa5
commit 124314672f
1 changed files with 1 additions and 1 deletions

View File

@ -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: