From 6695b8d8b69905bed2d2e1d77196c1861cac5b96 Mon Sep 17 00:00:00 2001 From: girlbossceo Date: Sat, 2 Sep 2023 13:59:45 -0400 Subject: [PATCH] mark room versions 1 and 2 as unstable even though these rooms would be quite broken as they typically would be super super old rooms, people seem to still complain about conduit not "supporting" room versions 1 and 2. to make them happy, just make them as unstable so they can at least join it. Signed-off-by: girlbossceo --- src/service/globals/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/service/globals/mod.rs b/src/service/globals/mod.rs index 1aa123ff..6d8a317a 100644 --- a/src/service/globals/mod.rs +++ b/src/service/globals/mod.rs @@ -140,6 +140,8 @@ impl Service { ]; // Experimental, partially supported room versions let unstable_room_versions = vec![ + RoomVersionId::V1, + RoomVersionId::V2, RoomVersionId::V3, RoomVersionId::V4, RoomVersionId::V5,