From b7d8d0752ea802b73850d10163722881796da605 Mon Sep 17 00:00:00 2001 From: Jamie Date: Wed, 1 Nov 2017 08:49:02 +0000 Subject: [PATCH] Removed authentication resul --- src/Ombi/ClientApp/app/wizard/plex/plex.component.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Ombi/ClientApp/app/wizard/plex/plex.component.ts b/src/Ombi/ClientApp/app/wizard/plex/plex.component.ts index db78f0889..d2cba2a97 100644 --- a/src/Ombi/ClientApp/app/wizard/plex/plex.component.ts +++ b/src/Ombi/ClientApp/app/wizard/plex/plex.component.ts @@ -4,8 +4,6 @@ import { Router } from "@angular/router"; import { PlexService } from "../../services"; import { NotificationService } from "../../services"; -import { IPlexAuthentication } from "../../interfaces"; - @Component({ templateUrl: "./plex.component.html", }) @@ -14,8 +12,6 @@ export class PlexComponent { public login: string; public password: string; - private authenticationResult: IPlexAuthentication; - constructor(private plexService: PlexService, private router: Router, private notificationService: NotificationService) { } public requestAuthToken() { @@ -24,8 +20,6 @@ export class PlexComponent { this.notificationService.error("Username or password was incorrect. Could not authenticate with Plex."); return; } - this.authenticationResult = x; - this.router.navigate(["Wizard/CreateAdmin"]); }); }