Merge pull request #55717 from DaanSelen/fix-issue-55665

fix(ObjectStoreStorage): fix s3 path encoding (issue causing 55665)
pull/56155/head
Stephan Orbaugh 2025-11-03 10:58:53 +07:00 committed by GitHub
commit ef21c79368
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

@ -480,7 +480,7 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common implements IChunkedFil
$metadata = [ $metadata = [
'mimetype' => $mimetype, 'mimetype' => $mimetype,
'original-storage' => $this->getId(), 'original-storage' => $this->getId(),
'original-path' => $path, 'original-path' => rawurlencode($path),
]; ];
if ($size) { if ($size) {
$metadata['size'] = $size; $metadata['size'] = $size;