From 8dc098093d95946a8d38a617765c4fbae21be598 Mon Sep 17 00:00:00 2001 From: lilia Date: Mon, 7 Sep 2015 17:20:36 -0700 Subject: [PATCH] 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 --- js/background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/background.js b/js/background.js index c2383982c56..755277c6cad 100644 --- a/js/background.js +++ b/js/background.js @@ -155,7 +155,7 @@ function updateConversation(conversationId) { var conversation = ConversationController.get(conversationId); if (conversation) { - conversation.reload(); + conversation.fetchMessages(); } }