Merge pull request #14058 from vpecinka/master
Avoid replacement by user object
This commit is contained in:
commit
243cef1c3a
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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue