From 783e7fc8348d02853983211fa28dd8448247ba92 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 4 Oct 2018 12:05:41 -0400 Subject: [PATCH] dont await void methods --- jslib | 2 +- src/bw.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index 6b3dc2344f2..1f36c5fee6a 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 6b3dc2344f2db167cbc404d83fa4602a1ca93ef8 +Subproject commit 1f36c5fee6a294f455de8c10c3d7316f708ec214 diff --git a/src/bw.ts b/src/bw.ts index 4663cfedef7..907a3c09910 100644 --- a/src/bw.ts +++ b/src/bw.ts @@ -147,7 +147,7 @@ export class Main { // }); const locale = await this.storageService.get(ConstantsService.localeKey); await this.i18nService.init(locale); - await this.authService.init(); + this.authService.init(); const installedVersion = await this.storageService.get(ConstantsService.installedVersionKey); const currentVersion = this.platformUtilsService.getApplicationVersion();