diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-10-07 09:26:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 09:26:40 -0400 |
commit | 66a785733458d0b5801097caff53624e202a91b4 (patch) | |
tree | ef211ad0fefd409961a03cd0ec8a0fd5b0a5e951 /synapse/rest/client/versions.py | |
parent | Add sample worker files for `pusher` and `federation_sender` (#14077) (diff) | |
download | synapse-66a785733458d0b5801097caff53624e202a91b4.tar.xz |
Use stable identifiers for MSC3771 & MSC3773. (#14050)
These are both part of Matrix 1.4 which has now been released. For now, support both the unstable and stable identifiers.
Diffstat (limited to 'synapse/rest/client/versions.py')
-rw-r--r-- | synapse/rest/client/versions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/versions.py b/synapse/rest/client/versions.py index 18ed313b5c..d1d2e5f7e3 100644 --- a/synapse/rest/client/versions.py +++ b/synapse/rest/client/versions.py @@ -105,7 +105,7 @@ class VersionsRestServlet(RestServlet): # Adds support for thread relations, per MSC3440. "org.matrix.msc3440.stable": True, # TODO: remove when "v1.3" is added above # Support for thread read receipts & notification counts. - "org.matrix.msc3771": self.config.experimental.msc3771_enabled, + "org.matrix.msc3771": True, "org.matrix.msc3773": self.config.experimental.msc3773_enabled, # Allows moderators to fetch redacted event content as described in MSC2815 "fi.mau.msc2815": self.config.experimental.msc2815_enabled, |