We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e86a2 commit 1fa2f42Copy full SHA for 1fa2f42
packages/node/src/handlers.ts
@@ -82,7 +82,7 @@ function extractRequestData(req: { [key: string]: any }): { [key: string]: strin
82
// query string:
83
// node: req.url (raw)
84
// express, koa: req.query
85
- const query = req.query || url.parse(originalUrl || '', true).query;
+ const query = url.parse(originalUrl || '', false).query;
86
// cookies:
87
// node, express, koa: req.headers.cookie
88
const cookies = cookie.parse(headers.cookie || '');
0 commit comments