diff --git a/app/Bus/Handlers/Events/ActionStorageHandler.php b/app/Bus/Handlers/Events/ActionStorageHandler.php index 1d502d79..3ccc7a0f 100644 --- a/app/Bus/Handlers/Events/ActionStorageHandler.php +++ b/app/Bus/Handlers/Events/ActionStorageHandler.php @@ -40,7 +40,7 @@ class ActionStorageHandler 'description' => $data['description'], ]; - if ($data['information'] ?? null) { + if (isset($data['information'])) { $action['information'] = $data['information']; }