diff options
Diffstat (limited to 'lib/private/files/filesystem.php')
-rw-r--r-- | lib/private/files/filesystem.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index f5a7060ec90..71d70bbf2a5 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -325,14 +325,14 @@ class Filesystem { $userObject = \OC_User::getManager()->get($user); if (!is_null($userObject)) { - $homeStorage = \OC_Config::getValue( 'home_storage', array( + $homeStorage = \OC_Config::getValue( 'objectstore', array( //default home storage configuration: 'class' => '\OC\Files\Storage\Home', 'arguments' => array() )); // sanity checks if (empty($homeStorage['class'])) { - \OCP\Util::writeLog('files', 'No class given for home_storage', \OCP\Util::ERROR); + \OCP\Util::writeLog('files', 'No class given for objectstore', \OCP\Util::ERROR); } if (!isset($homeStorage['arguments'])) { $homeStorage['arguments'] = array(); |