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 committed by backportbot[bot]
parent f55d784f4a
commit a9c456583d

View file

@ -473,7 +473,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;