Fix bug in panels controller

Previously, we'd create a new model instance even when one already
existed in the inbox.
pull/749/head
lilia 10 years ago
parent 9474b16eba
commit ebc8846fcb

@ -43,7 +43,7 @@
window.getConversation = function(attrs) {
var conversation = window.inbox.get(attrs.id) || attrs;
conversation = conversations.add(attrs);
conversation = conversations.add(conversation);
return conversation;
};

Loading…
Cancel
Save