@wireapp/core 45.2.0 → 45.2.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.
|
@@ -684,7 +684,7 @@ class MLSService extends commons_1.TypedEventEmitter {
|
|
|
684
684
|
const groupId = await groupIdFromConversationId(qualifiedConversationId, event.subconv);
|
|
685
685
|
// We should not receive a message for a group the client is not aware of
|
|
686
686
|
if (!groupId) {
|
|
687
|
-
throw new Error(`Could not find a group_id for conversation ${qualifiedConversationId.id}@${qualifiedConversationId.domain}`);
|
|
687
|
+
throw new Error(`Could not find a group_id for conversation ${qualifiedConversationId.id}@${qualifiedConversationId.domain}${event.subconv ? `/subconversation:${event.subconv}` : ''}`);
|
|
688
688
|
}
|
|
689
689
|
return (0, messageAdd_1.queueIncomingMLSMessage)(groupId, () => (0, events_1.handleMLSMessageAdd)({ event, mlsService: this, groupId }));
|
|
690
690
|
}
|
package/package.json
CHANGED
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"./lib/cryptography/AssetCryptography/crypto.node": "./lib/cryptography/AssetCryptography/crypto.browser.js"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@wireapp/api-client": "^26.11.
|
|
14
|
+
"@wireapp/api-client": "^26.11.1",
|
|
15
15
|
"@wireapp/commons": "^5.2.7",
|
|
16
|
-
"@wireapp/core-crypto": "1.0.0-rc.
|
|
16
|
+
"@wireapp/core-crypto": "1.0.0-rc.47",
|
|
17
17
|
"@wireapp/cryptobox": "12.8.0",
|
|
18
18
|
"@wireapp/priority-queue": "^2.1.5",
|
|
19
19
|
"@wireapp/promise-queue": "^2.3.2",
|
|
20
|
-
"@wireapp/protocol-messaging": "1.
|
|
20
|
+
"@wireapp/protocol-messaging": "1.45.0",
|
|
21
21
|
"@wireapp/store-engine": "5.1.5",
|
|
22
22
|
"axios": "1.6.7",
|
|
23
23
|
"bazinga64": "^6.3.4",
|
|
@@ -61,6 +61,6 @@
|
|
|
61
61
|
"test:coverage": "jest --coverage",
|
|
62
62
|
"watch": "tsc --watch"
|
|
63
63
|
},
|
|
64
|
-
"version": "45.2.
|
|
65
|
-
"gitHead": "
|
|
64
|
+
"version": "45.2.2",
|
|
65
|
+
"gitHead": "910f315128a1370c0583f3d5f76b28c1546bb9e1"
|
|
66
66
|
}
|