File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1022,7 +1022,7 @@ export function createRouter(options: RouterOptions): Router {
1022
1022
const shouldRedirect = handleRedirectRecord ( toLocation )
1023
1023
if ( shouldRedirect ) {
1024
1024
pushWithRedirect (
1025
- assign ( shouldRedirect , { replace : true } ) ,
1025
+ assign ( shouldRedirect , { replace : true , force : true } ) ,
1026
1026
toLocation
1027
1027
) . catch ( noop )
1028
1028
return
@@ -1063,7 +1063,9 @@ export function createRouter(options: RouterOptions): Router {
1063
1063
// the error is already handled by router.push we just want to avoid
1064
1064
// logging the error
1065
1065
pushWithRedirect (
1066
- ( error as NavigationRedirectError ) . to ,
1066
+ assign ( locationAsObject ( ( error as NavigationRedirectError ) . to ) , {
1067
+ force : true ,
1068
+ } ) ,
1067
1069
toLocation
1068
1070
// avoid an uncaught rejection, let push call triggerError
1069
1071
)
You can’t perform that action at this time.
0 commit comments