mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Actually act on mark_unread
This commit is contained in:
parent
9dbd006607
commit
ea8f6e611b
@ -191,9 +191,13 @@ class BulkPushRuleEvaluator(object):
|
|||||||
)
|
)
|
||||||
if matches:
|
if matches:
|
||||||
actions = [x for x in rule["actions"] if x != "dont_notify"]
|
actions = [x for x in rule["actions"] if x != "dont_notify"]
|
||||||
if actions and "notify" in actions:
|
if actions:
|
||||||
# Push rules say we should notify the user of this event
|
if (
|
||||||
actions_by_user[uid] = actions
|
"notify" in actions
|
||||||
|
or "org.matrix.msc2625.mark_unread" in actions
|
||||||
|
):
|
||||||
|
# Push rules say we should act on this event.
|
||||||
|
actions_by_user[uid] = actions
|
||||||
break
|
break
|
||||||
|
|
||||||
# Mark in the DB staging area the push actions for users who should be
|
# Mark in the DB staging area the push actions for users who should be
|
||||||
|
Loading…
Reference in New Issue
Block a user