mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2026-02-03 06:03:25 +00:00
Percent-encoding in filenames not handled correctly #266
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @JustAnotherArchivist on GitHub.
Percent-encoding in filenames is not handled correctly:
Loading that URL produces a 404 because the file was actually uploaded as
https://{redacted}/LN3l1/test%25C3%25A4testinstead, i.e. with the per cent symbols encoded as%25. That's probably the correct way to handle such uploads, but the output of the PUT request should also reflect it.@paolafrancesca commented on GitHub:
you're right @JustAnotherArchivist : the current solution was a little clumsy. I fixed with a more straightforward one in #216 , can you give a try?
@JustAnotherArchivist commented on GitHub:
Thanks, I can confirm that #216 fixes this.