From b17589217886d8c61ff8baeac3ce06e2ff0f8615 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Thu, 29 Aug 2024 19:17:33 +0000 Subject: [PATCH] support MSC4180 unstable stable flag for MSC3916 Signed-off-by: Jason Volk --- src/api/client/unversioned.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/api/client/unversioned.rs b/src/api/client/unversioned.rs index 82014cce..76574949 100644 --- a/src/api/client/unversioned.rs +++ b/src/api/client/unversioned.rs @@ -53,6 +53,8 @@ pub(crate) async fn get_supported_versions_route( ("org.matrix.msc3026.busy_presence".to_owned(), true), /* busy presence status (https://github.com/matrix-org/matrix-spec-proposals/pull/3026) */ ("org.matrix.msc3827".to_owned(), true), /* filtering of /publicRooms by room type (https://github.com/matrix-org/matrix-spec-proposals/pull/3827) */ ("org.matrix.msc3575".to_owned(), true), /* sliding sync (https://github.com/matrix-org/matrix-spec-proposals/pull/3575/files#r1588877046) */ + ("org.matrix.msc3916.stable".to_owned(), true), /* authenticated media (https://github.com/matrix-org/matrix-spec-proposals/pull/3916) */ + ("org.matrix.msc4180".to_owned(), true), /* stable flag for 3916 (https://github.com/matrix-org/matrix-spec-proposals/pull/4180) */ ]), };