We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d29f91 commit 3b91337Copy full SHA for 3b91337
synapse/handlers/room.py
@@ -811,8 +811,11 @@ async def create_room(
811
with (await self.room_member_handler.member_linearizer.queue((room_id,))):
812
content = {}
813
is_direct = config.get("is_direct", None)
814
+ hide_invite = config.get("fi.mau.will_auto_accept", None)
815
if is_direct:
816
content["is_direct"] = is_direct
817
+ if hide_invite:
818
+ content["fi.mau.will_auto_accept"] = True
819
820
for invitee in invite_list:
821
(
0 commit comments