This commit is contained in:
Eva
2025-05-23 20:32:16 +02:00
committed by GitHub

View File

@ -101,7 +101,7 @@ def application(
for hook in middleware.pre_hooks:
hook(ctx)
try:
response = handler(ctx, match.groupdict())
response = handler(ctx, {k: urllib.parse.unquote(v) for k, v in match.groupdict().items()})
except Exception:
ctx.session.rollback()
raise