fix(core): update

This commit is contained in:
2024-02-10 04:54:00 +01:00
parent e414e392d3
commit 037481f195
3 changed files with 7 additions and 2 deletions

View File

@@ -99,4 +99,9 @@ export class AppData {
console.log('All mandatory keys are present in the appdata');
}
}
public async waitForKeysPresent(keysArg: string[]) {
await this.readyDeferred.promise;
await this.kvStore.waitForKeysPresent(keysArg);
}
}