update last message on message delete

otherwise, we might still see the last message on the leftpane if the
message removed was the last one
pull/1495/head
Audric Ackermann 4 years ago
parent 6ed4511c21
commit 31e2341978

@ -622,12 +622,15 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
embeddedContact && embeddedContact.length > 0
? getName(embeddedContact[0])
: '';
const quotedAttachments = await this.getQuoteAttachment(
attachments,
preview
);
return {
author: contact.id,
id: quotedMessage.get('sent_at'),
text: body || embeddedContactName,
attachments: await this.getQuoteAttachment(attachments, preview),
attachments: quotedAttachments,
};
}
@ -1446,11 +1449,15 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
})
);
await this.updateLastMessage();
return toDeleteLocally;
}
public async removeMessage(messageId: any) {
await dataRemoveMessage(messageId);
this.updateLastMessage();
window.Whisper.events.trigger('messageDeleted', {
conversationKey: this.id,
messageId,

@ -225,7 +225,10 @@ export async function queueAttachmentDownloads(
): Promise<void> {
let count = 0;
count += await processNormalAttachments(message, message.get('attachments'));
count += await processNormalAttachments(
message,
message.get('attachments') || []
);
count += await processPreviews(message);

Loading…
Cancel
Save