We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e89a8d8 commit e13278dCopy full SHA for e13278d
lib/private/Files/ObjectStore/S3ConnectionTrait.php
@@ -39,6 +39,10 @@ protected function parseParams($params) {
39
throw new \Exception('Bucket has to be configured.');
40
}
41
42
+ if ($params['multibucket'] === true && isset($params['perBucket'][$params['bucket']])) {
43
+ $params = array_merge($params, $params['perBucket'][$params['bucket']]);
44
+ }
45
+
46
$this->id = 'amazon::' . $params['bucket'];
47
48
$this->test = isset($params['test']);
0 commit comments