mirror of
https://github.com/nextcloud/server.git
synced 2026-04-20 22:00:39 -04:00
Fix uninitialized variable $this->params
Signed-off-by: William Pain <pain.william@gmail.com>
This commit is contained in:
parent
3f6692ee24
commit
9a63ded43b
1 changed files with 2 additions and 2 deletions
|
|
@ -73,10 +73,10 @@ class Swift implements IObjectStore {
|
|||
|
||||
if (isset($params['apiKey'])) {
|
||||
$this->client = new Rackspace($params['url'], $params);
|
||||
$cacheKey = $this->params['username'] . '@' . $this->params['url'] . '/' . $this->params['bucket'];
|
||||
$cacheKey = $params['username'] . '@' . $params['url'] . '/' . $params['bucket'];
|
||||
} else {
|
||||
$this->client = new OpenStack($params['url'], $params);
|
||||
$cacheKey = $this->params['username'] . '@' . $this->params['url'] . '/' . $this->params['bucket'];
|
||||
$cacheKey = $params['username'] . '@' . $params['url'] . '/' . $params['bucket'];
|
||||
}
|
||||
|
||||
$cacheFactory = \OC::$server->getMemCacheFactory();
|
||||
|
|
|
|||
Loading…
Reference in a new issue