fix(ObjectStoreStorage): Encode original-path in writeStream by @frabe1579

Signed-off-by: Daan Selen <dselen@systemec.nl>
This commit is contained in:
Daan Selen 2025-10-13 14:37:37 +02:00
parent 2ea30f9149
commit 4b4b39e7ec

View file

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