From 79f6a335963e568c7b2a267a85583a6bca309988 Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Wed, 9 Feb 2022 17:06:30 -0500 Subject: [PATCH] [bug] Remove redundant token clean call (#1303) * [bug] Remove redundant token clean call * bump jslib --- jslib | 2 +- src/app/app.component.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/jslib b/jslib index c282ef85..b7bb16c1 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit c282ef8575eecf696d9153435ed3ca4b7dc949d5 +Subproject commit b7bb16c18a4bcd47988397bcf089fe6d895256b9 diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 297015d4..a0315f41 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -453,7 +453,6 @@ export class AppComponent implements OnInit { await Promise.all([ this.eventService.uploadEvents(userBeingLoggedOut), this.syncService.setLastSync(new Date(0), userBeingLoggedOut), - this.tokenService.clearToken(userBeingLoggedOut), this.cryptoService.clearKeys(userBeingLoggedOut), this.settingsService.clear(userBeingLoggedOut), this.cipherService.clear(userBeingLoggedOut),