diff --git a/application/Espo/Hooks/Common/Stream.php b/application/Espo/Hooks/Common/Stream.php index e32499f861..76f06a32de 100644 --- a/application/Espo/Hooks/Common/Stream.php +++ b/application/Espo/Hooks/Common/Stream.php @@ -48,6 +48,10 @@ class Stream */ public function afterSave(Entity $entity, array $options): void { + if (!empty($options['silent'])) { + return; + } + $this->processor->afterSave($entity, $options); }