File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -934,8 +934,14 @@ export function createRouter(options: RouterOptions): Router {
934
934
if (
935
935
isNavigationFailure ( error , ErrorTypes . NAVIGATION_GUARD_REDIRECT )
936
936
) {
937
- // do not restore history on unknown direction
938
- if ( info . delta ) routerHistory . go ( - info . delta , false )
937
+ // Here we could call if (info.delta) routerHistory.go(-info.delta,
938
+ // false) but this is bug prone as we have no way to wait the
939
+ // navigation to be finished before calling pushWithRedirect. Using
940
+ // a setTimeout of 16ms seems to work but there is not guarantee for
941
+ // it to work on every browser. So Instead we do not restore the
942
+ // history entry and trigger a new navigation as requested by the
943
+ // navigation guard.
944
+
939
945
// the error is already handled by router.push we just want to avoid
940
946
// logging the error
941
947
pushWithRedirect (
You can’t perform that action at this time.
0 commit comments