From c3f64fe9c4cb91673a62e46c17567f39d40d91e5 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 23 Aug 2018 08:56:45 -0400 Subject: [PATCH] update jslib --- jslib | 2 +- src/app/app.component.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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':