Properly check tokens in notification rules

This commit is contained in:
2023-01-12 07:20:48 +00:00
parent b68d7606f8
commit e01aea7712

View File

@@ -59,6 +59,16 @@ def process_rules(data):
value = [value]
if field == "src":
continue
if field == "tokens":
for token in value:
if "tokens" in message:
if token in message["tokens"]:
matched_field_number += 1
matched_fields.append(field)
# Break out of the token matching loop
break
# Continue to next field
continue
if field in message and message[field] in value:
matched_field_number += 1
matched_fields.append(field)