summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/Model/Subtask.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/Subtask.php b/app/Model/Subtask.php
index a3911cf7..c222fe2b 100644
--- a/app/Model/Subtask.php
+++ b/app/Model/Subtask.php
@@ -243,7 +243,7 @@ class Subtask extends Base
$subtask = $this->getById($values['id']);
$result = $this->db->table(self::TABLE)->eq('id', $values['id'])->save($values);
- if ($result && isset($options['quietly']) && $options['quietly']) {
+ if ($result && empty($options['quietly'])) {
$event = $subtask;
$event['changes'] = array_diff_assoc($values, $subtask);
$this->container['dispatcher']->dispatch(self::EVENT_UPDATE, new SubtaskEvent($event));