@wireapp/core 45.2.1 → 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
@@ -61,6 +61,6 @@
61
61
  "test:coverage": "jest --coverage",
62
62
  "watch": "tsc --watch"
63
63
  },
64
- "version": "45.2.1",
65
- "gitHead": "c36966446fba95ec9e32f7815b8d1af99ad3c25f"
64
+ "version": "45.2.2",
65
+ "gitHead": "910f315128a1370c0583f3d5f76b28c1546bb9e1"
66
66
  }