Skip to content
Snippets Groups Projects
Commit 60965bd7 authored by David Baker's avatar David Baker
Browse files

Revert b4a41aa5 as it's just broken.

parent b4a41aa5
No related branches found
No related tags found
No related merge requests found
......@@ -135,16 +135,8 @@ 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 and notify:
if actions:
actions_by_user[uid] = actions
break
defer.returnValue(actions_by_user)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment