From ef8dcdfe3cc19816e9c9e9f9c78e9f0af4d76b62 Mon Sep 17 00:00:00 2001 From: strawberry Date: Thu, 11 Jan 2024 20:26:23 -0500 Subject: [PATCH] declare explicit support for room filtering (MSC3827) conduit has supported this for a while now and is a Matrix 1.4 feature Signed-off-by: strawberry --- src/api/client_server/unversioned.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/client_server/unversioned.rs b/src/api/client_server/unversioned.rs index 49cb7bf5..f1b35a20 100644 --- a/src/api/client_server/unversioned.rs +++ b/src/api/client_server/unversioned.rs @@ -37,6 +37,7 @@ pub async fn get_supported_versions_route( unstable_features: BTreeMap::from_iter([ ("org.matrix.e2e_cross_signing".to_owned(), true), ("org.matrix.msc2836".to_owned(), true), + ("org.matrix.msc3827".to_owned(), true), ("org.matrix.msc2946".to_owned(), true), ]), };