summaryrefslogtreecommitdiffstats
path: root/lib/private/Files/ObjectStore
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2023-08-03 08:47:22 +0200
committerGitHub <noreply@github.com>2023-08-03 08:47:22 +0200
commit6587cf43143851aa4fa6f38aa3099e4070abb386 (patch)
tree5aabf2567f25491945cfd09199d5f31fea029284 /lib/private/Files/ObjectStore
parentb599e5808a55a3ed446de77188103312a032795a (diff)
parent46ba7ed60aa7d4bcde3ea61e6c142d7a64b8d1dc (diff)
downloadnextcloud-server-6587cf43143851aa4fa6f38aa3099e4070abb386.tar.gz
nextcloud-server-6587cf43143851aa4fa6f38aa3099e4070abb386.zip
Merge pull request #39642 from nextcloud/backport/39629/stable27
Diffstat (limited to 'lib/private/Files/ObjectStore')
-rw-r--r--lib/private/Files/ObjectStore/S3.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/ObjectStore/S3.php b/lib/private/Files/ObjectStore/S3.php
index 2d9119b5fc6..b1cd89388ae 100644
--- a/lib/private/Files/ObjectStore/S3.php
+++ b/lib/private/Files/ObjectStore/S3.php
@@ -99,7 +99,7 @@ class S3 implements IObjectStore, IObjectStoreMultiPartUpload {
$stat = $this->getConnection()->headObject([
'Bucket' => $this->bucket,
'Key' => $urn,
- ]);
+ ] + $this->getSSECParameters());
return (int)$stat->get('ContentLength');
}