@wireapp/core 30.7.1 → 30.7.2
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/CHANGELOG.md +8 -0
- package/package.json +2 -2
- package/src/main/Account.js +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [30.7.2](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/compare/@wireapp/core@30.7.1...@wireapp/core@30.7.2) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @wireapp/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [30.7.1](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/compare/@wireapp/core@30.7.0...@wireapp/core@30.7.1) (2022-09-14)
|
|
7
15
|
|
|
8
16
|
|
package/package.json
CHANGED
package/src/main/Account.js
CHANGED
|
@@ -144,12 +144,14 @@ class Account extends events_1.EventEmitter {
|
|
|
144
144
|
// Assumption: client gets only initialized once
|
|
145
145
|
if (initClient) {
|
|
146
146
|
await this.initClient({ clientType });
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
147
|
+
if (this.mlsConfig) {
|
|
148
|
+
// initialize schedulers for pending mls proposals once client is initialized
|
|
149
|
+
await ((_a = this.service) === null || _a === void 0 ? void 0 : _a.notification.checkExistingPendingProposals());
|
|
150
|
+
// initialize schedulers for renewing key materials
|
|
151
|
+
await ((_b = this.service) === null || _b === void 0 ? void 0 : _b.notification.checkForKeyMaterialsUpdate());
|
|
152
|
+
// initialize scheduler for syncing key packages with backend
|
|
153
|
+
await ((_c = this.service) === null || _c === void 0 ? void 0 : _c.notification.checkForKeyPackagesBackendSync());
|
|
154
|
+
}
|
|
153
155
|
}
|
|
154
156
|
return context;
|
|
155
157
|
}
|