diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2023-01-19 12:47:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-19 12:47:10 +0000 |
commit | a7b54ca8d84e9371244d792c30fc9084579470e1 (patch) | |
tree | 784b74f914bc70c64e1996ffc49e8ebcf01a32c0 /rust/src/push/evaluator.rs | |
parent | Update logging_sample_config.md (#14868) (diff) | |
download | synapse-a7b54ca8d84e9371244d792c30fc9084579470e1.tar.xz |
Implement MSC3930: polls push rules (#14787)
Diffstat (limited to 'rust/src/push/evaluator.rs')
-rw-r--r-- | rust/src/push/evaluator.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/push/evaluator.rs b/rust/src/push/evaluator.rs index c901c0fbcc..0242ee1c5f 100644 --- a/rust/src/push/evaluator.rs +++ b/rust/src/push/evaluator.rs @@ -483,7 +483,7 @@ fn test_requires_room_version_supports_condition() { }; let rules = PushRules::new(vec![custom_rule]); result = evaluator.run( - &FilteredPushRules::py_new(rules, BTreeMap::new(), true, true), + &FilteredPushRules::py_new(rules, BTreeMap::new(), true, false, true), None, None, ); |