fix: [workflow:baseModule] Only build fast lookup array if trigger is using the MISP core format

feature/workflow-module/publish-event
Sami Mokaddem 2023-10-09 14:25:46 +02:00
parent a1005dc551
commit fc8cf9ee8c
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 3 additions and 1 deletions

View File

@ -314,7 +314,9 @@ class WorkflowBaseActionModule extends WorkflowBaseModule
public function exec(array $node, WorkflowRoamingData $roamingData, array &$errors = []): bool
{
$rData = $roamingData->getData();
$this->_buildFastLookupForRoamingData($rData);
if ($this->expect_misp_core_format) {
$this->_buildFastLookupForRoamingData($rData);
}
return true;
}