From 2b3c0a41954b64db983bf54e569663f6ef803b2d Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Thu, 20 Mar 2025 17:48:33 +0900 Subject: [PATCH] fix: make invalid URL not happen --- src/logged.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }