Skip to content

Commit

Permalink
Merge pull request #15 from echavaillaz/master
Browse files Browse the repository at this point in the history
  • Loading branch information
helhum authored Apr 17, 2020
2 parents 3045b5e + 41c4e0e commit 61380e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Typo3SiteConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 61380e8

Please sign in to comment.