Create requires an object

// FREEBIE
This commit is contained in:
lilia 2015-09-17 11:41:49 -07:00
parent 78d7296f84
commit 6364cda7cb
2 changed files with 4 additions and 1 deletions

View file

@ -103,7 +103,7 @@
}
var c = ConversationController.get(conversationId);
if (!c) {
c = ConversationController.create(conversationId);
c = ConversationController.create({id: conversationId});
c.fetch();
}
return c;