Skip to content

Commit

Permalink
fix(http): don't include resolver/DI objects into HttpRequestParser
Browse files Browse the repository at this point in the history
  • Loading branch information
marcj committed Feb 7, 2024
1 parent cc3cd3b commit be189c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/http/src/request-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ export function getRequestParserCodeForParameters(
}

setParameters.push(`parameters.${parameter.parameter.name} = async (options = {}) => {
let res = Object.assign({}, parameters);
let res = {};
if (options.withPath !== false) {
${assignPathNames.join('\n')};
}
Expand Down

0 comments on commit be189c5

Please sign in to comment.