Fix disappearing contact info

This errant reference to the global cache of conversations was causing
some contacts to get clobbered.

// FREEBIE
pull/749/head
lilia 10 years ago
parent 93a5d01127
commit 8f28c3af68

@ -86,7 +86,7 @@
var conversationId = message.get('conversationId');
var conversation = ConversationController.get(conversationId);
if (!conversation) {
conversation = conversations.create({id: conversationId});
conversation = ConversationController.create({id: conversationId});
conversation.fetch();
}

Loading…
Cancel
Save