diff options
author | Julius Härtl <jus@bitgrid.net> | 2023-07-31 18:05:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-31 18:05:48 +0200 |
commit | 286cceebc3c572a70f3855df9f23b538a7528ab0 (patch) | |
tree | 741ac4917e99c8fd0689b7c1fc652932817f00d8 /lib/private | |
parent | 752299d063f8c82c329bd73b66ae7efc85ca1e2a (diff) | |
parent | 23f85b5ac22129289761d9325b61f4deff84d34c (diff) | |
download | nextcloud-server-286cceebc3c572a70f3855df9f23b538a7528ab0.tar.gz nextcloud-server-286cceebc3c572a70f3855df9f23b538a7528ab0.zip |
Merge pull request #39629 from ir0nhide/fix/sse-c
Diffstat (limited to 'lib/private')
-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'); } |