Skip to content

Commit

Permalink
fix(RouterStore): Stringify error from navigation error event (#357)
Browse files Browse the repository at this point in the history
Closes #356
  • Loading branch information
brandonroberts authored and MikeRyanDev committed Sep 9, 2017
1 parent 81afd0d commit 0528d2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/router-store/src/router_store_module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export class StoreRouterConnectingModule {
this.dispatchRouterAction(ROUTER_ERROR, {
routerState: this.routerState,
storeState: this.storeState,
event,
event: new NavigationError(event.id, event.url, `${event}`),
});
}

Expand Down

0 comments on commit 0528d2d

Please sign in to comment.