fix: Don't do partial joins over v2

Signed-off-by: timedout <git@nexy7574.co.uk>
This commit is contained in:
timedout
2026-03-22 16:06:25 +00:00
parent 01b40ad03a
commit 277e13f5a6
+2 -1
View File
@@ -425,7 +425,8 @@ class TransportLayerClient:
path = _create_v2_path("/send_join/%s/%s", room_id, event_id)
query_params: dict[str, str] = {}
# lazy-load state on join
query_params["omit_members"] = "true" if omit_members else "false"
# NOTE: fast joins are busted so we'll just ignore them here
#query_params["omit_members"] = "true" if omit_members else "false"
return await self.client.put_json(
destination=destination,