fix: make invalid URL not happen

This commit is contained in:
Shinwoo PARK 2025-03-20 17:48:33 +09:00
parent 9c729a5997
commit 2b3c0a4195

View File

@ -268,7 +268,7 @@ function overrideBuild<F extends Array<any>, R>(
const context = args[0] as ExecutionContext;
if (context.getType() === 'http') {
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;
}
}