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:
parent
5378cd8602
commit
8dc098093d
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@
|
||||||
function updateConversation(conversationId) {
|
function updateConversation(conversationId) {
|
||||||
var conversation = ConversationController.get(conversationId);
|
var conversation = ConversationController.get(conversationId);
|
||||||
if (conversation) {
|
if (conversation) {
|
||||||
conversation.reload();
|
conversation.fetchMessages();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue