mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Update Checker.php
Signed-off-by: Ilya Apasov <apasov@users.noreply.github.com>
This commit is contained in:
parent
fc5247892b
commit
b4fab4cfa4
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