mirror of
https://github.com/nextcloud/server.git
synced 2026-03-03 05:51:07 -05:00
fix(ObjectStoreStorage): Encode original-path in writeStream by @frabe1579
Signed-off-by: Daan Selen <dselen@systemec.nl>
This commit is contained in:
parent
2ea30f9149
commit
4b4b39e7ec
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue