On delivery receipts, reload messages only

The delivery receipt handler should only update messages, so rather than
reloading the conversation and its contacts, only reload the messages.

// FREEBIE
This commit is contained in:
lilia 2015-09-07 17:20:36 -07:00
parent 5378cd8602
commit 8dc098093d

View file

@ -155,7 +155,7 @@
function updateConversation(conversationId) {
var conversation = ConversationController.get(conversationId);
if (conversation) {
conversation.reload();
conversation.fetchMessages();
}
}