diff --git a/Mohem/src/app/hmg-common/services/authentication/authentication.service.ts b/Mohem/src/app/hmg-common/services/authentication/authentication.service.ts index 2ae1bdb2..59aad0c1 100644 --- a/Mohem/src/app/hmg-common/services/authentication/authentication.service.ts +++ b/Mohem/src/app/hmg-common/services/authentication/authentication.service.ts @@ -210,7 +210,7 @@ export class AuthenticationService { public login(request: LoginRequest, onError: any, errorLabel: string): Observable { this.setPublicFields(request); - request.P_APP_VERSION="CS"; + request.P_APP_VERSION="HMG"; return this.con.post(AuthenticationService.login, request, onError, errorLabel); } @@ -465,7 +465,7 @@ export class AuthenticationService { public checkUserAuthentication(request: CheckUserAuthenticationRequest, onError: any, errorLabel: string) : Observable { this.setPublicFields(request); - request.P_APP_VERSION="CS"; + request.P_APP_VERSION="HMG"; return this.con.post(AuthenticationService.userChecking, request, onError, errorLabel); }