diff --git a/jslib b/jslib index 3d02a1ecb8c..5d95fc733c7 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 3d02a1ecb8cdb945f3bee2fbb6921b40286575a1 +Subproject commit 5d95fc733c7b5aa922c38b5e4d92b1a755526719 diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 6422540fb6c..e56fe77cb55 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -94,7 +94,7 @@ export class AppComponent implements OnDestroy, OnInit { case 'loggedIn': case 'loggedOut': case 'unlocked': - this.notificationsService.updateConnection(); + this.notificationsService.updateConnection(false); break; case 'logout': this.logOut(!!message.expired); @@ -103,7 +103,7 @@ export class AppComponent implements OnDestroy, OnInit { await this.lockService.lock(); break; case 'locked': - this.notificationsService.updateConnection(); + this.notificationsService.updateConnection(false); this.router.navigate(['lock']); break; case 'syncStarted':