Skip to content

Commit

Permalink
[BUGFIX] Fix processing non image media files (#759)
Browse files Browse the repository at this point in the history
  • Loading branch information
twoldanski authored Aug 9, 2024
1 parent a8e7425 commit 5308a2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/DataProcessing/GalleryProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ protected function prepareGalleryData()
$this->processorConfigurationObject,
$fileObj
);

$this->galleryData['rows'][$row]['columns'][$column] = $fileObj;
}

$this->galleryData['rows'][$row]['columns'][$column] = $fileObj;
}
}

Expand Down

0 comments on commit 5308a2f

Please sign in to comment.