diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-10-07 12:38:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 12:38:46 -0400 |
commit | e03d7c5fd0577df5b62cd34559925c6cfe3e0360 (patch) | |
tree | 65076aab6bf16078e711f4e66b6219e0aec01ab6 /synapse/config | |
parent | Apply & bundle edits for non-message events. (#14034) (diff) | |
download | synapse-e03d7c5fd0577df5b62cd34559925c6cfe3e0360.tar.xz |
Remove support for the unstable dir flag on relations. (#14106)
From MSC3715, this was unused by clients (and there was no way for clients to know it was supported). Matrix 1.4 defines the stable field.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/experimental.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index c35301207a..e00cb7096c 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -100,9 +100,6 @@ class ExperimentalConfig(Config): # MSC3773: Thread notifications self.msc3773_enabled: bool = experimental.get("msc3773_enabled", False) - # MSC3715: dir param on /relations. - self.msc3715_enabled: bool = experimental.get("msc3715_enabled", False) - # MSC3848: Introduce errcodes for specific event sending failures self.msc3848_enabled: bool = experimental.get("msc3848_enabled", False) |