Merge pull request #26642 from nextcloud/backport/26639/stable20

[stable20] ensure redis returns bool for hasKey
This commit is contained in:
Roeland Jago Douma 2021-04-20 16:25:32 +02:00 committed by GitHub
commit fc118f1291
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class Redis extends Cache implements IMemcacheTTL {
}
public function hasKey($key) {
return self::$cache->exists($this->getNameSpace() . $key);
return (bool)self::$cache->exists($this->getNameSpace() . $key);
}
public function remove($key) {