fix: fix route access in overrideBuild of nestlogged-fastify
This commit is contained in:
parent
70b03792ff
commit
4a1c028678
@ -116,8 +116,11 @@ export 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 = /* supporting FastifyRequest */ req.raw ? req.raw.url : req.url;
|
route = req.raw.url;
|
||||||
}
|
}
|
||||||
|
} else if (type === 'middleware') {
|
||||||
|
const req = args[0];
|
||||||
|
route = req.originalUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Start Log
|
// Start Log
|
||||||
|
Loading…
x
Reference in New Issue
Block a user