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

Signed-off-by: Daan Selen <dselen@systemec.nl>
pull/55717/head
Daan Selen 3 months ago
parent 2ea30f9149
commit 4b4b39e7ec
  1. 2
      lib/private/Files/ObjectStore/ObjectStoreStorage.php

@ -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;

Loading…
Cancel
Save