fix: make invalid URL not happen
This commit is contained in:
parent
9c729a5997
commit
2b3c0a4195
@ -268,7 +268,7 @@ function overrideBuild<F extends Array<any>, R>(
|
|||||||
const context = args[0] as ExecutionContext;
|
const context = args[0] as ExecutionContext;
|
||||||
if (context.getType() === 'http') {
|
if (context.getType() === 'http') {
|
||||||
const req = context.switchToHttp().getRequest();
|
const req = context.switchToHttp().getRequest();
|
||||||
route = new URL(<string>(/* supporting FastifyRequest */ req.raw ? req.raw.url : req.url)).pathname;
|
route = /* supporting FastifyRequest */ req.raw ? req.raw.url : req.url;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user