diff --git a/src/Controller/BulkController.php b/src/Controller/BulkController.php index a1b3309ff..8cf8e7264 100644 --- a/src/Controller/BulkController.php +++ b/src/Controller/BulkController.php @@ -92,7 +92,7 @@ public function initialize(): void public function attribute(): ?Response { $requestData = $this->getRequest()->getData(); - $this->objects = (array)Hash::get($requestData, 'objects'); + $this->objects = Hash::get($requestData, 'objects'); $this->objects = is_string($this->objects) ? json_decode($this->objects, true) : $this->objects; $this->saveAttribute((array)Hash::get($requestData, 'attributes')); $this->showResult();