Skip to content

Commit

Permalink
[BUGFIX] Fix notice in CategoryController
Browse files Browse the repository at this point in the history
  • Loading branch information
georgringer authored Feb 27, 2024
1 parent 1f6f2b3 commit 968328a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/CategoryController.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function listAction(array $overwriteDemand = null): ResponseInterface
$demand = $this->overwriteDemandObject($demand, $overwriteDemand);
}

$idList = explode(',', $this->settings['categories']);
$idList = explode(',', $this->settings['categories'] ?? '');

$startingPoint = null;
if (!empty($this->settings['startingpoint'])) {
Expand Down

0 comments on commit 968328a

Please sign in to comment.