Skip to content

Commit

Permalink
Fix h3 adapter route param decode (#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
skirsten authored Nov 15, 2024
1 parent 5cb902a commit 40ece46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/h3/src/H3Adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export class H3Adapter implements IServerAdapter {
try {
const { body } = await handler({
queues: this.bullBoardQueues as BullBoardQueues,
params: getRouterParams(event),
params: getRouterParams(event, { decode: true }),
query: getQuery(event),
body: method !== 'get' ? await readBody(event) : {},
});
Expand Down

0 comments on commit 40ece46

Please sign in to comment.