Skip to content

Commit

Permalink
fix: Send all options to copy instead of just params
Browse files Browse the repository at this point in the history
  • Loading branch information
amenophis committed Apr 4, 2024
1 parent 80ce2d2 commit b4ddb70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AwsS3V3Adapter.php
Expand Up @@ -438,7 +438,7 @@ public function copy(string $source, string $destination, Config $config): void
$this->bucket,
$this->prefixer->prefixPath($destination),
$this->visibility->visibilityToAcl($visibility ?: 'private'),
$this->createOptionsFromConfig($config)['params']
$this->createOptionsFromConfig($config)
);
} catch (Throwable $exception) {
throw UnableToCopyFile::fromLocationTo($source, $destination, $exception);
Expand Down

0 comments on commit b4ddb70

Please sign in to comment.