diff options
author | Julius Härtl <jus@bitgrid.net> | 2023-08-03 08:47:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 08:47:22 +0200 |
commit | 6587cf43143851aa4fa6f38aa3099e4070abb386 (patch) | |
tree | 5aabf2567f25491945cfd09199d5f31fea029284 /lib/private/Files/ObjectStore | |
parent | b599e5808a55a3ed446de77188103312a032795a (diff) | |
parent | 46ba7ed60aa7d4bcde3ea61e6c142d7a64b8d1dc (diff) | |
download | nextcloud-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.php | 2 |
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'); } |