From 7385aa82f22f666cf8d7f681b38c5ec2ec4c273e Mon Sep 17 00:00:00 2001 From: tidusjar Date: Fri, 20 Mar 2020 10:10:26 +0000 Subject: [PATCH] Should fix https://github.com/tidusjar/Ombi/issues/3417 --- src/Ombi/ClientApp/src/app/auth/cookie.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi/ClientApp/src/app/auth/cookie.component.ts b/src/Ombi/ClientApp/src/app/auth/cookie.component.ts index 515f8c603..1a6cf9144 100644 --- a/src/Ombi/ClientApp/src/app/auth/cookie.component.ts +++ b/src/Ombi/ClientApp/src/app/auth/cookie.component.ts @@ -16,7 +16,7 @@ export class CookieComponent implements OnInit { if (cookie.Auth) { const jwtVal = cookie.Auth; this.store.save("id_token", jwtVal); - this.router.navigate(["search"]); + this.router.navigate(["discover"]); } else { this.router.navigate(["login"]); }