Merge pull request #14795 from nextcloud/backport/14058/stable15
[stable15] Avoid replacement by user object
This commit is contained in:
commit
085741a795
|
@ -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 New Issue