1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

dont await void methods

This commit is contained in:
Kyle Spearrin
2018-10-04 12:05:41 -04:00
parent dbca2a64e0
commit 783e7fc834
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: 6b3dc2344f...1f36c5fee6

View File

@@ -147,7 +147,7 @@ export class Main {
// });
const locale = await this.storageService.get<string>(ConstantsService.localeKey);
await this.i18nService.init(locale);
await this.authService.init();
this.authService.init();
const installedVersion = await this.storageService.get<string>(ConstantsService.installedVersionKey);
const currentVersion = this.platformUtilsService.getApplicationVersion();