Early return when no active automation matches given trigger
[MAILPOET-4946]
This commit is contained in:
@@ -59,8 +59,12 @@ class TriggerHandler {
|
|||||||
|
|
||||||
/** @param Subject[] $subjects */
|
/** @param Subject[] $subjects */
|
||||||
public function processTrigger(Trigger $trigger, array $subjects): void {
|
public function processTrigger(Trigger $trigger, array $subjects): void {
|
||||||
$subjects = $this->subjectTransformerHandler->getAllSubjects($subjects);
|
|
||||||
$automations = $this->automationStorage->getActiveAutomationsByTrigger($trigger);
|
$automations = $this->automationStorage->getActiveAutomationsByTrigger($trigger);
|
||||||
|
if (!$automations) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$subjects = $this->subjectTransformerHandler->getAllSubjects($subjects);
|
||||||
foreach ($automations as $automation) {
|
foreach ($automations as $automation) {
|
||||||
$step = $automation->getTrigger($trigger->getKey());
|
$step = $automation->getTrigger($trigger->getKey());
|
||||||
if (!$step) {
|
if (!$step) {
|
||||||
|
Reference in New Issue
Block a user