mirror of
https://github.com/nextcloud/server.git
synced 2025-08-16 15:41:57 +00:00
Correctly handle Redis::keys returning false
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
@ -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
|
||||
|
@ -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));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user