Skip to content

Commit

Permalink
Merge pull request #50547 from nextcloud/backport/50514/stable31
Browse files Browse the repository at this point in the history
[stable31] feat(S3): add SSE-C support in S3 External Storage
  • Loading branch information
AndyScherzinger authored Jan 29, 2025
2 parents 9ee1e19 + 936ef80 commit 1d7d01d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Files/ObjectStore/S3ConnectionTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ protected function getCertificateBundlePath(): ?string {
}

protected function getSSECKey(): ?string {
if (isset($this->params['sse_c_key'])) {
if (isset($this->params['sse_c_key']) && !empty($this->params['sse_c_key'])) {
return $this->params['sse_c_key'];
}

Expand Down

0 comments on commit 1d7d01d

Please sign in to comment.