We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e84af96 commit 8cafb84Copy full SHA for 8cafb84
1 file changed
Classes/Service/AssetService.php
@@ -879,6 +879,9 @@ protected function readCacheDisabledInstructionFromContext(): bool
879
880
return $hasDisabledInstructionInRequest
881
|| $typoScriptFrontendController->no_cache
882
- || (is_array($typoScriptFrontendController->page) && $typoScriptFrontendController->page['no_cache']);
+ || (
883
+ is_array($typoScriptFrontendController->page)
884
+ && ($typoScriptFrontendController->page['no_cache'] ?? false)
885
+ );
886
}
887
0 commit comments