Store user object later in the code

Signed-off-by: Vlastimil Pecinka <pecinka@email.cz>
pull/14795/head
Vlastimil Pecinka 2019-02-06 11:36:08 +07:00 committed by Backportbot
parent 2e30a5d107
commit 7cab488c6f
1 changed files with 2 additions and 1 deletions

@ -110,7 +110,6 @@ class ObjectHomeMountProvider implements IHomeMountProvider {
if (!isset($config['arguments'])) {
$config['arguments'] = [];
}
$config['arguments']['user'] = $user;
$bucket = $this->config->getUserValue($user->getUID(), 'homeobjectstore', 'bucket', null);
@ -134,6 +133,8 @@ class ObjectHomeMountProvider implements IHomeMountProvider {
// instantiate object store implementation
$config['arguments']['objectstore'] = new $config['class']($config['arguments']);
$config['arguments']['user'] = $user;
return $config;
}
}