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:
parent
93a5d01127
commit
8f28c3af68
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@
|
||||||
var conversationId = message.get('conversationId');
|
var conversationId = message.get('conversationId');
|
||||||
var conversation = ConversationController.get(conversationId);
|
var conversation = ConversationController.get(conversationId);
|
||||||
if (!conversation) {
|
if (!conversation) {
|
||||||
conversation = conversations.create({id: conversationId});
|
conversation = ConversationController.create({id: conversationId});
|
||||||
conversation.fetch();
|
conversation.fetch();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue