You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When using the renaming option in RomM, if the game has an accent the filename is going to have it too and that breaks urls. (and thus download and play options for that game)
To Reproduce
Steps to reproduce the behavior:
Pick any Pokémon game for example
Use the renaming function of RomM with the rom
Try to download it, or play it
See error
Expected behavior
RomM shouldn't add accents to filenames.
The text was updated successfully, but these errors were encountered:
I don't think the expected behavior here is to not add accents to the files. Ideally, any character supported by the filesystem should not be removed from filenames, to not enforce the user to a reduced charset.
Instead, this sounds more like failing to correctly quote some of the URLs, to escape any special characters.
When serving files using the `X-Accel-Redirect` header in nginx, the
header values must be URL-encoded. Otherwise, nginx will not be able
to serve the files if they contain special characters.
This commit adds a new `FileRedirectResponse` class to the `utils.nginx`
module, to simplify the creation of responses that serve files using the
`X-Accel-Redirect` header.
Fixes#1212, #1223.
RomM version
3.5.1
Describe the bug
When using the renaming option in RomM, if the game has an accent the filename is going to have it too and that breaks urls. (and thus download and play options for that game)
To Reproduce
Steps to reproduce the behavior:
Expected behavior
RomM shouldn't add accents to filenames.
The text was updated successfully, but these errors were encountered: