mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-17 21:34:34 -05:00
group is dict
This commit is contained in:
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
Block a user