Fix duplicate detection for sent messages in public chat

pull/490/head
Beaudan Brown 6 years ago
parent 1cf6ccafc6
commit 9fe613967a

@ -1303,15 +1303,17 @@
const descriptorId = await textsecure.MessageReceiver.arrayBufferToString(
messageDescriptor.id
);
let message;
if (
messageDescriptor.type === 'group' &&
descriptorId.match(/^publicChat:/) &&
data.source === ourNumber
) {
// Remove public chat messages to ourselves
return event.confirm();
// Public chat messages from ourselves should be outgoing
message = await createSentMessage(data);
} else {
message = await createMessage(data);
}
const message = await createMessage(data);
const isDuplicate = await isMessageDuplicate(message);
if (isDuplicate) {
window.log.warn('Received duplicate message', message.idForLogging());
@ -1396,10 +1398,10 @@
return new Whisper.Message({
source: textsecure.storage.user.getNumber(),
sourceDevice: data.device,
sourceDevice: data.sourceDevice,
sent_at: data.timestamp,
sent_to: sentTo,
received_at: now,
received_at: data.isPublic ? data.receivedAt : now,
conversationId: data.destination,
type: 'outgoing',
sent: true,

@ -1333,6 +1333,10 @@
if (this.isPrivate()) {
messageWithSchema.destination = destination;
} else if (this.isPublic()) {
// Public chats require this data to detect duplicates
messageWithSchema.source = textsecure.storage.user.getNumber();
messageWithSchema.sourceDevice = 1;
}
const attributes = {
...messageWithSchema,

@ -2019,7 +2019,10 @@
}
);
}
} else if (dataMessage.profile) {
} else if (
source !== textsecure.storage.user.getNumber() &&
dataMessage.profile
) {
ConversationController.getOrCreateAndWait(source, 'private').then(
sender => {
sender.setLokiProfile(dataMessage.profile);

Loading…
Cancel
Save