From 485f59cb48052f44c99b7f4aecb21a8997d97907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Wolda=C5=84ski?= Date: Fri, 9 Aug 2024 12:31:01 +0200 Subject: [PATCH] [BUGFIX] Fix processing non image media files --- Classes/DataProcessing/GalleryProcessor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/DataProcessing/GalleryProcessor.php b/Classes/DataProcessing/GalleryProcessor.php index afff5212..64c93a60 100644 --- a/Classes/DataProcessing/GalleryProcessor.php +++ b/Classes/DataProcessing/GalleryProcessor.php @@ -232,9 +232,9 @@ protected function prepareGalleryData() $this->processorConfigurationObject, $fileObj ); - - $this->galleryData['rows'][$row]['columns'][$column] = $fileObj; } + + $this->galleryData['rows'][$row]['columns'][$column] = $fileObj; } }