Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Revert "fix(ObjectStoreStorage): Encode original-path in writeStream by
@frabe1579"

This reverts commit 4b4b39e.

Signed-off-by: Robin Appelman <[email protected]>
  • Loading branch information
icewind1991 committed Nov 18, 2025
commit a7d130c598e4f5e1034763d1c079eecbdde5cbc4
2 changes: 1 addition & 1 deletion lib/private/Files/ObjectStore/ObjectStoreStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ public function writeStream(string $path, $stream, ?int $size = null): int {
$metadata = [
'mimetype' => $mimetype,
'original-storage' => $this->getId(),
'original-path' => rawurlencode($path),
'original-path' => $path,
];
if ($size) {
$metadata['size'] = $size;
Expand Down
Loading