forked from MirrorHub/synapse
Don't add notifications to the table unless there's actually a 'notify' action
This commit is contained in:
parent
74f49f99f9
commit
b4a41aa542
1 changed files with 9 additions and 1 deletions
|
@ -135,8 +135,16 @@ class BulkPushRuleEvaluator:
|
|||
evaluator, rule['conditions'], uid, display_name, condition_cache
|
||||
)
|
||||
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']
|
||||
if actions:
|
||||
if actions and notify:
|
||||
actions_by_user[uid] = actions
|
||||
break
|
||||
defer.returnValue(actions_by_user)
|
||||
|
|
Loading…
Reference in a new issue