From a19f53eca9647bbc5d034abd74a8ec72e8bda9ec Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 4 Oct 2018 12:05:32 -0400 Subject: [PATCH] dont await void methods --- jslib | 2 +- src/app/services.module.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index 6b3dc2344f..1f36c5fee6 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 6b3dc2344f2db167cbc404d83fa4602a1ca93ef8 +Subproject commit 1f36c5fee6a294f455de8c10c3d7316f708ec214 diff --git a/src/app/services.module.ts b/src/app/services.module.ts index efe56a0f86..7503837ab3 100644 --- a/src/app/services.module.ts +++ b/src/app/services.module.ts @@ -126,7 +126,7 @@ export function initFactory(): Function { lockService.init(true); const locale = await storageService.get(ConstantsService.localeKey); await i18nService.init(locale); - await authService.init(); + authService.init(); setTimeout(() => notificationsService.init(environmentService), 3000); const htmlEl = window.document.documentElement; htmlEl.classList.add('os_' + platformUtilsService.getDeviceString());