fix(core): update

This commit is contained in:
Philipp Kunz 2020-11-30 10:40:39 +00:00
parent b7feb5098b
commit e7d7865750

View File

@ -86,7 +86,7 @@ export class SmartRouter {
for (const wantedRoute of wantedRoutes) {
const routeResult = wantedRoute.matchFunction(currentLocation);
await wantedRoute.handler(routeResult.valueOf() as IRouteInfo);
wantedRoute.handler(routeResult.valueOf() as IRouteInfo); // not waiting here
}
}
}