mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
Merge pull request #57186 from nextcloud/perbucket-without-multibucket
feat: don't gate perBucket object store configuration behind multibucket
This commit is contained in:
commit
8a05a3e01b
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ trait S3ConnectionTrait {
|
|||
throw new \Exception('Bucket has to be configured.');
|
||||
}
|
||||
|
||||
if (isset($params['multibucket']) && $params['multibucket'] === true && isset($params['perBucket'][$params['bucket']])) {
|
||||
if (isset($params['perBucket'][$params['bucket']])) {
|
||||
$params = array_merge($params, $params['perBucket'][$params['bucket']]);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue