Lowercase msg before matching
This commit is contained in:
parent
031995d4b9
commit
9aacc2cc51
|
@ -81,7 +81,7 @@ def process_rules(data):
|
||||||
if field == "msg":
|
if field == "msg":
|
||||||
for msg in value:
|
for msg in value:
|
||||||
if "msg" in message:
|
if "msg" in message:
|
||||||
if msg in message["msg"]:
|
if msg.lower() in message["msg"].lower():
|
||||||
matched_field_number += 1
|
matched_field_number += 1
|
||||||
matched_fields.append(field)
|
matched_fields.append(field)
|
||||||
# Break out of the msg matching loop
|
# Break out of the msg matching loop
|
||||||
|
|
Loading…
Reference in New Issue