From f997ac8812759bfe21970dcd18ba195457ebe544 Mon Sep 17 00:00:00 2001 From: umasoodch Date: Mon, 10 May 2021 12:40:59 +0300 Subject: [PATCH] fixed versionid --- .../services/authentication/authentication.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 9d0a6ec5..16545aa3 100644 --- a/Mohem/src/app/hmg-common/services/authentication/authentication.service.ts +++ b/Mohem/src/app/hmg-common/services/authentication/authentication.service.ts @@ -134,7 +134,7 @@ export class AuthenticationService { mobileType = 'android'; } request.VersionID = 2.9; - request.Channel = 31; + request.Channel = 33; request.LanguageID = TranslatorService.getCurrentLanguageCode(); request.MobileType = mobileType; @@ -209,7 +209,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); } @@ -466,7 +466,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); }