Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update Checker.php
Signed-off-by: Ilya Apasov <[email protected]>
  • Loading branch information
apasov authored and backportbot-nextcloud[bot] committed May 9, 2023
commit 0e4e1ab00e8a90b7b76927cabc91a17050ef30ee
2 changes: 1 addition & 1 deletion lib/private/IntegrityCheck/Checker.php
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ public function hasPassedCheck(): bool {
*/
public function getResults(): array {
$cachedResults = $this->cache->get(self::CACHE_KEY);
if (!\is_null($cachedResults)) {
if (!\is_null($cachedResults) and $cachedResults !== false) {
return json_decode($cachedResults, true);
}

Expand Down