Fix tags not being populated in audit log when multiMatch is enabled

Fixes #2754.
This commit is contained in:
Marios Levogiannis
2023-01-16 18:13:44 +02:00
parent dabf79eec2
commit d3a6b6a6fd
2 changed files with 7 additions and 4 deletions

View File

@@ -229,6 +229,9 @@ void RuleWithActions::executeActionsIndependentOfChainedRuleResult(Transaction *
if (m_msg) {
m_msg->evaluate(this, trans, ruleMessage);
}
for (actions::Tag *a : m_actionsTag) {
a->evaluate(this, trans, ruleMessage);
}
}
}