Merge pull request #34328 from nextcloud/fix/fix-redis-type-error

Correctly handle Redis::keys returning false
This commit is contained in:
Joas Schilling 2022-09-30 10:15:01 +02:00 committed by GitHub
commit 534fbd83e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -2177,7 +2177,7 @@ class Redis
*
* @param string $pattern pattern, using '*' as a wildcard
*
* @return array string[] The keys that match a certain pattern.
* @return string[]|false The keys that match a certain pattern.
*
* @link https://redis.io/commands/keys
* @example

View File

@ -78,7 +78,7 @@ class Redis extends Cache implements IMemcacheTTL {
$keys = self::$cache->keys($prefix);
$deleted = self::$cache->del($keys);
return count($keys) === $deleted;
return (is_array($keys) && (count($keys) === $deleted));
}
/**