summaryrefslogtreecommitdiffstats
path: root/lib/private/files/objectstore
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2014-06-26 11:30:00 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2014-06-26 11:30:00 +0200
commitf96a535f80594697061e6405b6243946acc68df1 (patch)
tree801fd58af070543dbdaa1ffd6b2fa2cbc274ac94 /lib/private/files/objectstore
parent42e9d49d72cd424335bed79b5b8347caa7a34f45 (diff)
downloadnextcloud-server-f96a535f80594697061e6405b6243946acc68df1.tar.gz
nextcloud-server-f96a535f80594697061e6405b6243946acc68df1.zip
fix objectstore test execution
Diffstat (limited to 'lib/private/files/objectstore')
-rw-r--r--lib/private/files/objectstore/swift.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/objectstore/swift.php b/lib/private/files/objectstore/swift.php
index 71aae23bb5a..3378fd7b86f 100644
--- a/lib/private/files/objectstore/swift.php
+++ b/lib/private/files/objectstore/swift.php
@@ -80,7 +80,7 @@ class Swift implements IObjectStore {
$this->container = $this->objectStoreService->getContainer($this->params['container']);
} catch (ClientErrorResponseException $ex) {
// if the container does not exist and autocreate is true try to create the container on the fly
- if (isset($params['autocreate']) && $params['autocreate'] === true) {
+ if (isset($this->params['autocreate']) && $this->params['autocreate'] === true) {
$this->container = $this->objectStoreService->createContainer($this->params['container']);
} else {
throw $ex;