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): add SSE-C parameters to headObject call
Signed-off-by: Tobias Zimmerer <[email protected]>
  • Loading branch information
ir0nhide authored and backportbot-nextcloud[bot] committed Jul 31, 2023
commit 46ba7ed60aa7d4bcde3ea61e6c142d7a64b8d1dc
2 changes: 1 addition & 1 deletion lib/private/Files/ObjectStore/S3.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function completeMultipartUpload(string $urn, string $uploadId, array $re
$stat = $this->getConnection()->headObject([
'Bucket' => $this->bucket,
'Key' => $urn,
]);
] + $this->getSSECParameters());
return (int)$stat->get('ContentLength');
}

Expand Down