From 35f137ccc19c8b28d6b86d46276cb38172592d45 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Tue, 15 Jul 2025 14:20:19 +0300 Subject: [PATCH] Hardcode v11 for new rooms Upcoming breaking changes in room v12 prevent safely using the default room version and security embargoes prevent fixing them ahead of time. --- mautrix_telegram/portal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mautrix_telegram/portal.py b/mautrix_telegram/portal.py index a6a2c4c8..6b4b22ea 100644 --- a/mautrix_telegram/portal.py +++ b/mautrix_telegram/portal.py @@ -1038,6 +1038,7 @@ class Portal(DBPortal, BasePortal): initial_state=initial_state, creation_content=creation_content, beeper_auto_join_invites=autojoin_invites, + room_version="11", ) if not room_id: raise Exception(f"Failed to create room")