mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 10:40:40 -04:00
fix: self ref typo
Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
parent
b6d332d07f
commit
7936f07aaa
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ class Redis extends Cache implements IMemcacheTTL {
|
|||
*/
|
||||
$pattern = $this->getPrefix() . $prefix . '*';
|
||||
/** @var array|false */
|
||||
$keys = $self::$cache->keys($pattern);
|
||||
$keys = self::$cache->keys($pattern);
|
||||
if (!is_array($keys) || count($keys) === 0) { // no matching keys
|
||||
return true; // nothing to do; consider operation done
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue