From 8bfd4d88663fd1743390ee9f854b38af0e137b34 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 6 Oct 2020 17:37:06 +0000 Subject: [PATCH] fix(core): update --- ts/typedrequest.classes.typedrouter.ts | 6 ++++++ 1 file changed, 6 insertions(+) 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' + } + }; } } }