Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(s3): treat empty sse_c_key as not set
Co-authored-by: Christian Becker <[email protected]>
Signed-off-by: Richard Steinmetz <[email protected]>
  • Loading branch information
2 people authored and backportbot[bot] committed Jan 29, 2025
commit 936ef804cd6acb5cb41f6bc7a652a7edfdcaf4e9
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
Loading