Browse Source

Merge pull request #37611 from ZE3kr/patch-1

Unquote S3 ETag stored in oc_filecache
pull/37663/head
Julius Härtl 3 years ago
committed by GitHub
parent
commit
140c2541ed
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apps/files_external/lib/Lib/Storage/AmazonS3.php

2
apps/files_external/lib/Lib/Storage/AmazonS3.php

@ -724,7 +724,7 @@ class AmazonS3 extends \OC\Files\Storage\Common {
'mimetype' => $this->mimeDetector->detectPath($object['Key']),
'mtime' => strtotime($object['LastModified']),
'storage_mtime' => strtotime($object['LastModified']),
'etag' => $object['ETag'],
'etag' => trim($object['ETag'], '"'),
'permissions' => Constants::PERMISSION_ALL - Constants::PERMISSION_CREATE,
'size' => (int)($object['Size'] ?? $object['ContentLength']),
];

Loading…
Cancel
Save