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

Fix: Join rules of a basic filter with AND instead of OR. (Redmine issue: #7581)

parent 8b14b09c
No related branches found
No related tags found
No related merge requests found
......@@ -92,7 +92,7 @@ def process_rule(item):
if ip6s:
rules.append('Source.IP6 IN ["{}"]'.format('","'.join(ip6s)))
item.filter = ' OR '.join(rules)
item.filter = ' AND '.join(rules)
def to_tree(rule):
......
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