From aca4ee37915a28200e5233be3dc711ccc4a5aee9 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Thu, 26 Jan 2023 14:13:42 +0000 Subject: [PATCH] fix: Fixed the issue where the login page is still present after logging in with oauth --- src/Ombi/ClientApp/src/app/login/login.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi/ClientApp/src/app/login/login.component.ts b/src/Ombi/ClientApp/src/app/login/login.component.ts index 0e0c2a836..9c243da4f 100644 --- a/src/Ombi/ClientApp/src/app/login/login.component.ts +++ b/src/Ombi/ClientApp/src/app/login/login.component.ts @@ -222,7 +222,7 @@ export class LoginComponent implements OnDestroy, OnInit { } this.oauthLoading = false; this.loadStores(); - this.router.navigate(["search"]); + this.router.navigate([""]); return; } }