fix(core): update

This commit is contained in:
2021-09-27 12:14:43 +02:00
parent 575ddd36a0
commit 98c638e1ab
3 changed files with 20064 additions and 3874 deletions

View File

@ -70,7 +70,7 @@ export class TypedRouter {
if (this.upstreamTypedRouter && checkUpstreamRouter) {
typedHandler = this.upstreamTypedRouter.getTypedHandlerForMethod(methodArg);
} else {
typedHandler = this.handlerMap.find((handler) => {
typedHandler = this.handlerMap.findSync((handler) => {
return handler.method === methodArg;
});