From a851a71f22a05341975c8f09209408c5895891f2 Mon Sep 17 00:00:00 2001 From: Julius Gruber Date: Tue, 22 Oct 2019 11:02:13 +0200 Subject: [PATCH] Removed building of target param from auth-method.model2 --- src/app/core/auth/models/auth-method.model.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/core/auth/models/auth-method.model.ts b/src/app/core/auth/models/auth-method.model.ts index a25349c6eb..131150e457 100644 --- a/src/app/core/auth/models/auth-method.model.ts +++ b/src/app/core/auth/models/auth-method.model.ts @@ -18,8 +18,8 @@ export class AuthMethodModel { } case 'shibboleth': { this.authMethodType = AuthMethodType.Shibboleth; - const strings: string[] = location.split('target='); - const target = strings[1]; + // const strings: string[] = location.split('target='); + // const target = strings[1]; // this.location = target + location + '/' + ShibbConstants.SHIBBOLETH_REDIRECT_ROUTE; this.location = location + '/' + ShibbConstants.SHIBBOLETH_REDIRECT_ROUTE; break;