@wireapp/core 46.46.5-beta.4.8cd9a3525 → 46.46.5-beta.7.eb43a5bfb

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/lib/Account.js CHANGED
@@ -155,7 +155,7 @@ class Account extends commons_1.TypedEventEmitter {
155
155
  await this.persistCookie(this.storeEngine, cookie);
156
156
  }
157
157
  catch (error) {
158
- this.logger.error(`Failed to save cookie ${error.message}`, error);
158
+ this.logger.error('Failed to save cookie:', error);
159
159
  }
160
160
  }
161
161
  });
@@ -456,6 +456,7 @@ describe('MLSService', () => {
456
456
  });
457
457
  it('Throws if decryption fails', async () => {
458
458
  const [mlsService, { transactionContext }] = await createMLSService();
459
+ const mockGroupId = 'mXOagqRIX/RFd7QyXJA8/Ed8X+hvQgLXIiwYHm3OQFc=';
459
460
  const getGroupIdFromConversationId = () => Promise.resolve(mockGroupId);
460
461
  jest
461
462
  .spyOn(transactionContext, 'decryptMessage')
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "./lib/cryptography/AssetCryptography/crypto.node": "./lib/cryptography/AssetCryptography/crypto.browser.js"
12
12
  },
13
13
  "dependencies": {
14
- "@wireapp/api-client": "^27.90.1-beta.14.8cd9a3525",
14
+ "@wireapp/api-client": "^27.90.0",
15
15
  "@wireapp/commons": "^5.4.9",
16
16
  "@wireapp/core-crypto": "9.1.2",
17
17
  "@wireapp/cryptobox": "12.8.0",
@@ -61,6 +61,6 @@
61
61
  "test:coverage": "jest --coverage",
62
62
  "watch": "tsc --watch"
63
63
  },
64
- "version": "46.46.5-beta.4.8cd9a3525",
65
- "gitHead": "8cd9a35250b6cf17f0ee286b5e9fdab641004426"
64
+ "version": "46.46.5-beta.7.eb43a5bfb",
65
+ "gitHead": "eb43a5bfb401ee3b209927d98702f6bf9014837a"
66
66
  }