@wireapp/core 34.1.5 → 34.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/main/Account.js +1 -1
package/package.json
CHANGED
package/src/main/Account.js
CHANGED
|
@@ -311,10 +311,10 @@ class Account extends events_1.EventEmitter {
|
|
|
311
311
|
};
|
|
312
312
|
}
|
|
313
313
|
async loadAndValidateLocalClient(entropyData) {
|
|
314
|
-
await this.service.cryptography.initCryptobox();
|
|
315
314
|
const loadedClient = await this.service.client.getLocalClient();
|
|
316
315
|
await this.apiClient.api.client.getClient(loadedClient.id);
|
|
317
316
|
this.apiClient.context.clientId = loadedClient.id;
|
|
317
|
+
await this.service.cryptography.initCryptobox();
|
|
318
318
|
if (this.mlsConfig && this.backendFeatures.supportsMLS) {
|
|
319
319
|
this.coreCryptoClient = await this.createMLSClient(loadedClient, this.apiClient.context, this.mlsConfig, entropyData);
|
|
320
320
|
}
|