fix(core): update

This commit is contained in:
2020-07-26 13:48:57 +00:00
parent 53a4375545
commit df87c6c75e
4 changed files with 10 additions and 9 deletions

View File

@@ -106,7 +106,9 @@ export class TypedRouter {
typedRequestArg = await typedHandler.addResponse(typedRequestArg);
} else if (typedRequestArg.correlation.phase === 'response') {
this.fireEventInterestMap.findInterest(typedRequestArg.correlation.id)?.fullfillInterest(typedRequestArg);
this.fireEventInterestMap
.findInterest(typedRequestArg.correlation.id)
?.fullfillInterest(typedRequestArg);
}
return typedRequestArg;
}