From 88bdb9dfc2d0637148beca2a531286de7ae69064 Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Tue, 18 Mar 2025 21:38:39 +0900 Subject: [PATCH] fix(logged): include interceptor in ExecutionContext check The check for ExecutionContext was only considering 'guard' type, which excluded 'interceptor' type functions. This change ensures that both 'guard' and 'interceptor' types are handled correctly when retrieving the Request from the ExecutionContext. --- src/logged.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logged.ts b/src/logged.ts index 1cd5892..0ce31ce 100644 --- a/src/logged.ts +++ b/src/logged.ts @@ -222,7 +222,7 @@ function overrideBuild, R>( } // If this is ExecutionContext based function (e.g. Guard, Interceptor) get Request from Context - if (type === 'guard') { + if (type === 'guard' || type === 'interceptor') { const context = args[0] as ExecutionContext; if (context.getType() === 'http') { const req = context.switchToHttp().getRequest();