Fix disappearing contact info

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

// FREEBIE
This commit is contained in:
lilia 2015-09-16 22:47:42 -07:00
parent 93a5d01127
commit 8f28c3af68

View file

@ -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();
}