Conversation
PR ReviewThe bulk of this PR is housekeeping: MikroORM 6.6.4 → 6.6.6, whitespace fixes in test 🟡 Code Quality
// Current - throws URIError on malformed input
ctx.params[param] = decodeURIComponent(ctx.params[param])
// Safer alternative
try {
ctx.params[param] = decodeURIComponent(ctx.params[param])
} catch {
ctx.throw(400, `Invalid URL encoding in route parameter: ${param}`)
}The new test covers the happy path but there's no test for a request with a malformed param (e.g. 🔵 MinorMissing test for other special characters The test only covers spaces ( |
No description provided.