diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-04-11 15:37:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-11 15:37:46 -0400 |
commit | ab3165efb77e670da807977f0cb227217649aa44 (patch) | |
tree | e39cc1ba208ab9750ea5e3924506a13c2884ec0d /synapse/config | |
parent | Add missing type hints to config classes. (#12402) (diff) | |
download | synapse-ab3165efb77e670da807977f0cb227217649aa44.tar.xz |
Remove experimental configuration flag for MSC3666. (#12436)
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/experimental.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index 0dd4c59581..447476fbfa 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -28,8 +28,6 @@ class ExperimentalConfig(Config): # MSC3440 (thread relation) self.msc3440_enabled: bool = experimental.get("msc3440_enabled", False) - # MSC3666: including bundled relations in /search. - self.msc3666_enabled: bool = experimental.get("msc3666_enabled", False) # MSC3026 (busy presence state) self.msc3026_enabled: bool = experimental.get("msc3026_enabled", False) |