1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-10 05:13:17 +00:00

Bump jslib (#108)

This commit is contained in:
Oscar Hinton
2021-04-07 20:42:39 +02:00
committed by GitHub
parent ffca14cb5f
commit 2ead70e434
6 changed files with 11 additions and 14 deletions

View File

@@ -131,7 +131,7 @@ export class Main {
this.authService.init();
const installedVersion = await this.storageService.get<string>(ConstantsService.installedVersionKey);
const currentVersion = this.platformUtilsService.getApplicationVersion();
const currentVersion = await this.platformUtilsService.getApplicationVersion();
if (installedVersion == null || installedVersion !== currentVersion) {
await this.storageService.save(ConstantsService.installedVersionKey, currentVersion);
}