File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
changelogs/client_server/newsfragments Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change
1
+ Add a missing ``state_key`` check on ``.m.rule.tombstone``.
Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ A new default override rule is to be added which is similar to `@room` notificat
19
19
"kind" : " event_match" ,
20
20
"key" : " type" ,
21
21
"pattern" : " m.room.tombstone"
22
+ },
23
+ {
24
+ "kind" : " event_match" ,
25
+ "key" : " state_key" ,
26
+ "pattern" : " "
22
27
}
23
28
],
24
29
"actions" : [
Original file line number Diff line number Diff line change @@ -382,7 +382,7 @@ Definition:
382
382
383
383
``.m.rule.tombstone ``
384
384
`````````````````````
385
- Matches any event whose type is ``m.room.tombstone ``. This is intended
385
+ Matches any state event whose type is ``m.room.tombstone ``. This is intended
386
386
to notify users of a room when it is upgraded, similar to what an
387
387
``@room `` notification would accomplish.
388
388
@@ -399,6 +399,11 @@ Definition:
399
399
"kind" : " event_match" ,
400
400
"key" : " type" ,
401
401
"pattern" : " m.room.tombstone"
402
+ },
403
+ {
404
+ "kind" : " event_match" ,
405
+ "key" : " state_key" ,
406
+ "pattern" : " "
402
407
}
403
408
],
404
409
"actions" : [
You can’t perform that action at this time.
0 commit comments