summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-02-23 16:06:42 -0500
committerGitHub <noreply@github.com>2023-02-23 16:06:42 -0500
commitec79870f1422be47e8d6e85f315799888278969b (patch)
tree7e1123c78d1d39bc0172f0bb91a57cfc71927074 /synapse/config
parentFix typo in federation_verify_certificates in config documentation. (#15139) (diff)
downloadsynapse-ec79870f1422be47e8d6e85f315799888278969b.tar.xz
Fix a typo in MSC3873 config option. (#15138)
Previously the experimental configuration option referred to the wrong
MSC number.
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/experimental.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index 54c91953e1..bc38fae0b6 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -175,8 +175,8 @@ class ExperimentalConfig(Config):
         )
 
         # MSC3873: Disambiguate event_match keys.
-        self.msc3783_escape_event_match_key = experimental.get(
-            "msc3783_escape_event_match_key", False
+        self.msc3873_escape_event_match_key = experimental.get(
+            "msc3873_escape_event_match_key", False
         )
 
         # MSC3952: Intentional mentions, this depends on MSC3758.