-
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
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
Fix Content-Disposition header parser #1192
Conversation
Package Stats on
|
Package Stats on
|
Non-ASCII file names couldn't be handled by
st.download_button
correctly.Internally, such file names result in content-disposition header like
Content-Disposition: attachment; filename*=UTF-8''file%20name.jpg
and the current header parser couldn't handle this syntax.This PR fixes the problem.