Use contact name when updating last message for a conversation

pull/1/head
Scott Nonnenberg 7 years ago
parent aa13a2c6f7
commit 93d3abbf8d

@ -16,7 +16,7 @@
window.Whisper = window.Whisper || {};
const { Message: TypedMessage } = Signal.Types;
const { Message: TypedMessage, Contact } = Signal.Types;
const { deleteAttachmentData } = Signal.Migrations;
window.Whisper.Message = Backbone.Model.extend({
@ -162,6 +162,10 @@
const conversation = this.getModelForKeyChange();
return i18n('keychanged', conversation.getTitle());
}
const contacts = this.get('contact');
if (contacts && contacts.length) {
return Contact.getName(contacts[0]);
}
return '';
},

Loading…
Cancel
Save