Merge pull request #5804 from matrix-org/erikj/match_against_state_key

Explicitly check that tombstone is a state event before notifying.
This commit is contained in:
Erik Johnston 2019-08-01 13:13:33 +01:00 committed by GitHub
commit ad167c3849
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

1
changelog.d/5804.bugfix Normal file
View File

@ -0,0 +1 @@
Fix check that tombstone is a state event in push rules.

View File

@ -245,7 +245,13 @@ BASE_APPEND_OVERRIDE_RULES = [
"key": "type",
"pattern": "m.room.tombstone",
"_id": "_tombstone",
}
},
{
"kind": "event_match",
"key": "state_key",
"pattern": "",
"_id": "_tombstone_statekey",
},
],
"actions": ["notify", {"set_tweak": "highlight", "value": True}],
},