nathanpeck / s3-upload-stream

A Node.js module for streaming data to Amazon S3 via the multipart upload API
MIT License
347 stars 46 forks source link

Location returned has URL encoded forward slashes for directories #27

Closed niftylettuce closed 10 years ago

niftylettuce commented 10 years ago

For example, if you set Key to uploads/some/folder/blah.jpg, then returned Location is http://domain.com/uploads%2Fsome%2Ffolder%2Fblah.jpg when it should be uploads/some/folder/blah.jpg without URL encoded forward slashes.

nathanpeck commented 10 years ago

This module just returns the response from the AWS SDK as is so if you would like this behavior changed you'll have to open an issue on the AWS SDK repo.