Browse Source

Comment too long

pull/931/head
Lucas van Schaik 2 years ago
parent
commit
aba5052308
  1. 3
      src/PresetReaction/PresetReaction.php

3
src/PresetReaction/PresetReaction.php

@ -56,7 +56,8 @@ class PresetReaction extends ContextReactionPluginBase implements ContainerFacto
$action_ids = $config['actions'];
foreach ($action_ids as $action_id) {
$action = $this->actionStorage->load($action_id);
// Make sure that the action is appropriate: either system or with same entity type.
// Make sure that the action is appropriate:
// either system action or with same type as the entity type.
if ($action->getType() === 'system' || $entity->getEntityTypeId() === $action->getType()) {
$action->execute([$entity]);
}

Loading…
Cancel
Save