Browse Source

Include no actions instead of dont_notify for suppressing edits. (#15016)

tags/v1.77.0rc1
Patrick Cloke 1 year ago
committed by GitHub
parent
commit
4142dca718
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/15016.feature
  2. +1
    -1
      rust/src/push/base_rules.rs

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

@@ -0,0 +1 @@
Experimental support to suppress notifications from message edits ([MSC3958](https://github.com/matrix-org/matrix-spec-proposals/pull/3958)).

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

@@ -76,7 +76,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