Skip to content

Commit 43ed780

Browse files
committed
fix(s3): trim multiple spaces to single space in original path header
Signed-off-by: Kent Delante <kent@delante.me> The spec defines that x-amz-meta-original-path header needs spaces to be trimmed and multiple spaces need to be converted to a single space. This is to comply with the spec and fix it for some storage hosts that return a SignatureDoesNotMatch error when not done.
1 parent 60f4e84 commit 43ed780

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/private/Files/ObjectStore/ObjectStoreStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ public function writeStream(string $path, $stream, ?int $size = null): int {
501501
$metadata = [
502502
'mimetype' => $mimetype,
503503
'original-storage' => $this->getId(),
504-
'original-path' => $path,
504+
'original-path' => preg_replace('/\s+/', ' ', $path) ?? $path,
505505
];
506506
if ($size) {
507507
$metadata['size'] = $size;

0 commit comments

Comments
 (0)