mirror of
https://github.com/matrix-org/synapse.git
synced 2025-02-07 07:45:47 +00:00
Disable push rule evaluation for rooms excluded from sync (#15361)
* no push for excluded room from sync * add changelog Signed-off-by: Maghen Calinghee <maghen.calinghee@beta.gouv.fr> * correct changelog
This commit is contained in:
parent
3e95c19911
commit
486c059479
1
changelog.d/15361.bugfix
Normal file
1
changelog.d/15361.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Disable push rule evaluation for rooms excluded from sync.
|
@ -326,6 +326,7 @@ class BulkPushRuleEvaluator:
|
||||
if (
|
||||
not event.internal_metadata.is_notifiable()
|
||||
or event.internal_metadata.is_historical()
|
||||
or event.room_id in self.hs.config.server.rooms_to_exclude_from_sync
|
||||
):
|
||||
# Push rules for events that aren't notifiable can't be processed by this and
|
||||
# we want to skip push notification actions for historical messages
|
||||
|
Loading…
Reference in New Issue
Block a user