1 files changed, 2 insertions, 8 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index 489f2601ac..9ff382ccc3 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -171,15 +171,9 @@ class ExperimentalConfig(Config):
"msc3873_escape_event_match_key", False
)
- # MSC3966: exact_event_property_contains push rule condition.
- self.msc3966_exact_event_property_contains = experimental.get(
- "msc3966_exact_event_property_contains", False
- )
-
# MSC3952: Intentional mentions, this depends on MSC3966.
- self.msc3952_intentional_mentions = (
- experimental.get("msc3952_intentional_mentions", False)
- and self.msc3966_exact_event_property_contains
+ self.msc3952_intentional_mentions = experimental.get(
+ "msc3952_intentional_mentions", False
)
# MSC3959: Do not generate notifications for edits.
|