mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 16:50:55 -04:00
Update Checker.php
Signed-off-by: Ilya Apasov <apasov@users.noreply.github.com>
This commit is contained in:
parent
ff6b4c659b
commit
0e4e1ab00e
1 changed files with 1 additions and 1 deletions
|
|
@ -439,7 +439,7 @@ class Checker {
|
|||
*/
|
||||
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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue