Fix unexpected return value of RedisCache->delete()

- Address https://github.com/friendica/friendica/issues/8876#issuecomment-671025374
2022.09-rc
Hypolite Petovan 2020-08-09 09:19:15 -04:00
rodzic b219677de5
commit 7019e02f61
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -139,7 +139,9 @@ class RedisCache extends BaseCache implements IMemoryCache
public function delete($key)
{
$cachekey = $this->getCacheKey($key);
return ($this->redis->del($cachekey) > 0);
$this->redis->del($cachekey);
// Redis doesn't have an error state for del()
return true;
}
/**