summary refs log tree commit diff
path: root/synapse/config/experimental.py
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2022-01-31 10:13:32 -0500
committerGitHub <noreply@github.com>2022-01-31 10:13:32 -0500
commit02755c31882b75ae6e71d9033ed1e72d0fb7c00b (patch)
tree64de055f72f9e854935c801677800ae1a71e0a1a /synapse/config/experimental.py
parentRemove not needed old table of contents in documentation (#11860) (diff)
downloadsynapse-02755c31882b75ae6e71d9033ed1e72d0fb7c00b.tar.xz
Remove the obsolete MSC1849 configuration flag. (#11843)
MSC1849 was replaced by MSC2675, which was merged.
The configuration flag, which defaulted to true, is no
longer useful.
Diffstat (limited to 'synapse/config/experimental.py')
-rw-r--r--synapse/config/experimental.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index dbaeb10918..65c807a19a 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -24,8 +24,6 @@ class ExperimentalConfig(Config):
     def read_config(self, config: JsonDict, **kwargs):
         experimental = config.get("experimental_features") or {}
 
-        # Whether to enable experimental MSC1849 (aka relations) support
-        self.msc1849_enabled = config.get("experimental_msc1849_support_enabled", True)
         # MSC3440 (thread relation)
         self.msc3440_enabled: bool = experimental.get("msc3440_enabled", False)