Skip to content
Snippets Groups Projects
Commit ecb84a84 authored by Rajmund Hruška's avatar Rajmund Hruška
Browse files

Fix: Check filtered groups. (Redmine issue: #6227)

parent ff73473b
No related branches found
No related tags found
No related merge requests found
......@@ -570,8 +570,10 @@ class EventReporter(BaseReporter):
acc.append((src, filtered_groups, fallback_groups))
for src, filtered_groups, fallback_groups in acc:
if not filtered_groups and not fallback_groups:
continue
if not filtered_groups:
if not fallback_groups:
continue
filtered_groups = fallback_groups
passed = True
groups = (tuple(filtered_groups), tuple(fallback_groups))
if groups not in result:
......
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