be sure to have a conversationId on handleMessageEvent()

pull/1493/head
Audric Ackermann 4 years ago
parent df0b44db4c
commit c7fa765b65
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -583,7 +583,12 @@ export async function handleMessageEvent(event: MessageEvent): Promise<void> {
? ConversationType.GROUP
: ConversationType.PRIVATE;
let conversationId = isIncoming ? source : destination;
let conversationId = isIncoming ? source : destination || source; // for synced message
if (!conversationId) {
window.log.error('We cannot handle a message without a conversationId');
confirm();
return;
}
if (message.profileKey?.length) {
await handleProfileUpdate(
message.profileKey,

Loading…
Cancel
Save