1
0
Fork 0
mirror of https://github.com/element-hq/synapse.git synced 2025-03-31 03:45:13 +00:00
This commit is contained in:
Andrew Ferrazzutti 2025-03-28 15:56:29 +00:00 committed by GitHub
commit efccba3b82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

1
changelog.d/17721.bugfix Normal file
View file

@ -0,0 +1 @@
Don't exclude MSC3266 from the "unstable_features" section of the response to `GET /_matrix/client/versions`.

View file

@ -132,6 +132,8 @@ class VersionsRestServlet(RestServlet):
"org.matrix.msc3026.busy_presence": self.config.experimental.msc3026_enabled,
# Supports receiving private read receipts as per MSC2285
"org.matrix.msc2285.stable": True, # TODO: Remove when MSC2285 becomes a part of the spec
# Supports room previews as per MSC3266
"im.nheko.msc3266": self.config.experimental.msc3266_enabled,
# Supports filtering of /publicRooms by room type as per MSC3827
"org.matrix.msc3827.stable": True,
# Adds support for thread relations, per MSC3440.