From a500e054aa7e3731eac9596722be2331850433f0 Mon Sep 17 00:00:00 2001 From: umasoodch Date: Tue, 7 Apr 2020 14:09:15 +0300 Subject: [PATCH] fixed loader issue --- .../services/authentication/authentication.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 42a403b3..d418cfc5 100644 --- a/Mohem/src/app/hmg-common/services/authentication/authentication.service.ts +++ b/Mohem/src/app/hmg-common/services/authentication/authentication.service.ts @@ -637,6 +637,7 @@ export class AuthenticationService { } private sessionTimeOutDialog() { + this.cs.stopLoading(); this.cs.presentAcceptDialog( this.ts.trPK("general", "idle-relogin"), () => { @@ -657,7 +658,7 @@ export class AuthenticationService { this.clearUserSession(); this.publishUserChangeEvent(); this.sessionTimeOutDialog(); - this.cs.openHome(); + // this.cs.openHome(); } }, AuthenticationService.monitorInterval_M); }