mirror of
https://mau.dev/maunium/synapse.git
synced 2025-04-04 02:33:28 +02:00
Fix create_group to pass requester_user_id
This commit is contained in:
parent
2ca46c7afc
commit
c7d9f25d22
1 changed files with 1 additions and 1 deletions
|
@ -733,7 +733,7 @@ class GroupsServerHandler(object):
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def create_group(self, group_id, requester_user_id, content):
|
def create_group(self, group_id, requester_user_id, content):
|
||||||
group = yield self.check_group_is_ours(group_id)
|
group = yield self.check_group_is_ours(group_id, requester_user_id)
|
||||||
|
|
||||||
logger.info("Attempting to create group with ID: %r", group_id)
|
logger.info("Attempting to create group with ID: %r", group_id)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue