diff --git a/src/logged.ts b/src/logged.ts index b14ebe4..e96f469 100644 --- a/src/logged.ts +++ b/src/logged.ts @@ -268,7 +268,7 @@ function overrideBuild, R>( const context = args[0] as ExecutionContext; if (context.getType() === 'http') { const req = context.switchToHttp().getRequest(); - route = new URL((/* supporting FastifyRequest */ req.raw ? req.raw.url : req.url)).pathname; + route = /* supporting FastifyRequest */ req.raw ? req.raw.url : req.url; } }