diff --git a/src/Typo3SiteConfiguration.php b/src/Typo3SiteConfiguration.php index c76cad6..b92aad3 100644 --- a/src/Typo3SiteConfiguration.php +++ b/src/Typo3SiteConfiguration.php @@ -64,7 +64,7 @@ protected function getAllSiteConfigurationFromFiles(bool $useCache = true): arra { // Check if the data is already cached $siteConfiguration = $useCache ? $this->getCache()->require($this->cacheIdentifier) : false; - if ($siteConfiguration !== false) { + if ($siteConfiguration !== false && $siteConfiguration !== null) { return $siteConfiguration; } $finder = new Finder();