qoomon / aws-s3-bucket-browser

Single page application to browse AWS S3 bucket content
https://qoomon.github.io/aws-s3-bucket-browser/index.html?bucket=https://s3.amazonaws.com/spacenet-dataset#
MIT License
246 stars 85 forks source link

Support + character in keys #41

Closed cavedon closed 1 year ago

cavedon commented 1 year ago

If a key contains a plus character, it will be used as-is in the URL and will lead to a key-not-found error. Using encodeURIComponent() instead of encodeURI() fixes the issue by URL-encoding the + character.

qoomon commented 1 year ago

thanks a lot