Skip to content

Commit

Permalink
fix: add check to FilesCategoryProcessor config
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdmlln committed Aug 21, 2024
1 parent ccd2882 commit 163e9e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/DataProcessing/FilesCategoryProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ private function getFileCategoryMap(array $fileUids): array

private function fetchCategoryProperties(): void
{
$fields = $this->processorConf['fields']
$fields = isset($this->processorConf['fields'])
? GeneralUtility::trimExplode(',', $this->processorConf['fields'])
: ['title'];

Expand Down

0 comments on commit 163e9e9

Please sign in to comment.