Commit 1849e72
authored
Fix forming signature with multiple space (#981)
Ref https://github.com/aws/aws-sdk-php/blob/master/src/Signature/SignatureV4.php#L301
Problem example:
```php
$s3->copyObject([
'Bucket' => 'target',
'Key' => '1.txt',
'CopySource' => 'source/1 2.txt', // double space
]);
```1 parent 8ff3bfd commit 1849e72
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
273 | 273 | | |
274 | 274 | | |
275 | 275 | | |
276 | | - | |
| 276 | + | |
277 | 277 | | |
278 | 278 | | |
279 | 279 | | |
| |||
0 commit comments