From 108a66f0dac7586f2f7871c6bb77f73cb924f2b3 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 24 May 2018 09:44:04 +0200 Subject: [PATCH] Fix history back after a redirect --- client/src/app/core/routing/redirect.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/app/core/routing/redirect.service.ts b/client/src/app/core/routing/redirect.service.ts index a0125e0ae..abe044d73 100644 --- a/client/src/app/core/routing/redirect.service.ts +++ b/client/src/app/core/routing/redirect.service.ts @@ -31,7 +31,7 @@ export class RedirectService { redirectToHomepage () { console.log('Redirecting to %s...', RedirectService.DEFAULT_ROUTE) - this.router.navigate([ RedirectService.DEFAULT_ROUTE ]) + this.router.navigate([ RedirectService.DEFAULT_ROUTE ], { replaceUrl: true }) .catch(() => { console.error( 'Cannot navigate to %s, resetting default route to %s.', @@ -40,7 +40,7 @@ export class RedirectService { ) RedirectService.DEFAULT_ROUTE = RedirectService.INIT_DEFAULT_ROUTE - return this.router.navigate([ RedirectService.DEFAULT_ROUTE ]) + return this.router.navigate([ RedirectService.DEFAULT_ROUTE ], { replaceUrl: true }) }) } -- 2.41.0