diff --git a/ts/typedrequest.classes.typedrouter.ts b/ts/typedrequest.classes.typedrouter.ts index 2b923b4..d676d4d 100644 --- a/ts/typedrequest.classes.typedrouter.ts +++ b/ts/typedrequest.classes.typedrouter.ts @@ -109,6 +109,12 @@ export class TypedRouter { this.fireEventInterestMap .findInterest(typedRequestArg.correlation.id) ?.fullfillInterest(typedRequestArg); + return { + ...typedRequestArg, + ...{ + method: 'nullPathFromResponse' + } + }; } } }