Browse Source

Remove spurious `dont_notify` action from `.m.rule.reaction` (#15073)

This does nothing and I want to remove it from the MSC.
tags/v1.78.0rc1
Richard van der Hoff 1 year ago
committed by GitHub
parent
commit
157c571f3e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      changelog.d/15073.feature
  2. +1
    -1
      rust/src/push/base_rules.rs

+ 1
- 0
changelog.d/15073.feature View File

@@ -0,0 +1 @@
Remove spurious `dont_notify` action from the defaults for the `.m.rule.reaction` pushrule.

+ 1
- 1
rust/src/push/base_rules.rs View File

@@ -223,7 +223,7 @@ pub const BASE_APPEND_OVERRIDE_RULES: &[PushRule] = &[
pattern_type: None,
},
))]),
actions: Cow::Borrowed(&[Action::DontNotify]),
actions: Cow::Borrowed(&[]),
default: true,
default_enabled: true,
},


Loading…
Cancel
Save