diff --git a/server/szurubooru/rest/app.py b/server/szurubooru/rest/app.py index 79a59abb..199d0980 100644 --- a/server/szurubooru/rest/app.py +++ b/server/szurubooru/rest/app.py @@ -30,7 +30,7 @@ def _get_headers(env): def _create_context(env): method = env['REQUEST_METHOD'] - path = '/' + env['PATH_INFO'].lstrip('/') + path = urllib.parse.unquote('/' + env['PATH_INFO'].lstrip('/')) headers = _get_headers(env) files = {}