mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-03-06 04:15:52 -05:00
Merge pull request #523 from matrix-org/dbkr/no_push_unless_notify
Better fix for actions with both dont_notify and tweaks
This commit is contained in:
commit
f92fe15897
@ -139,16 +139,8 @@ class BulkPushRuleEvaluator:
|
|||||||
evaluator, rule['conditions'], uid, display_name, condition_cache
|
evaluator, rule['conditions'], uid, display_name, condition_cache
|
||||||
)
|
)
|
||||||
if matches:
|
if matches:
|
||||||
notify = False
|
|
||||||
actions = []
|
|
||||||
for a in rule['actions']:
|
|
||||||
if a != 'dont_notify':
|
|
||||||
actions.append(a)
|
|
||||||
elif a == 'notify':
|
|
||||||
notify = True
|
|
||||||
|
|
||||||
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:
|
if actions and 'notify' in actions:
|
||||||
actions_by_user[uid] = actions
|
actions_by_user[uid] = actions
|
||||||
break
|
break
|
||||||
defer.returnValue(actions_by_user)
|
defer.returnValue(actions_by_user)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user