Skip to content

Commit

Permalink
Merge pull request #3427 from insiders/multidomain-extra-data
Browse files Browse the repository at this point in the history
[MultidomainBundle] Check of extra data key is defined
  • Loading branch information
acrobat authored Sep 13, 2024
2 parents a44ead7 + f4a5722 commit 677acb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function getExtraData($key)
{
$extraData = $this->domainConfiguration->getExtraData();

if ($extraData[$key]) {
if (isset($extraData[$key])) {
return $extraData[$key];
}

Expand Down

0 comments on commit 677acb1

Please sign in to comment.