We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem
Files downloaded from dufs in Safari have URL-encoded name which is not decoded by the browser automatically. Relevant StackOverflow issue.
For example, given a file named "Track 01.flac":
"Track 01.flac"
The name of the downloaded file remains URL-encoded "Track%2001.flac":
"Track%2001.flac"
Headers returned by the file response:
HTTP/2 200 accept-ranges: bytes content-disposition: inline; filename="Track%2001.flac" content-type: audio/flac ...
Environment:
The text was updated successfully, but these errors were encountered:
fix: URL-encoded filename when downloading in safari
a1738b3
close #201
Successfully merging a pull request may close this issue.
Problem
Files downloaded from dufs in Safari have URL-encoded name which is not decoded by the browser automatically. Relevant StackOverflow issue.
For example, given a file named
"Track 01.flac"
:The name of the downloaded file remains URL-encoded
"Track%2001.flac"
:Headers returned by the file response:
Environment:
The text was updated successfully, but these errors were encountered: