From 4c4b875348c9d034348c1bc84c9935b881cd7366 Mon Sep 17 00:00:00 2001 From: lilia Date: Thu, 5 Nov 2015 16:30:36 -0800 Subject: [PATCH] Fix displaying contact names as 'Unknown Group' // FREEBIE --- js/models/messages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/messages.js b/js/models/messages.js index 66e333ab..9ed60cb5 100644 --- a/js/models/messages.js +++ b/js/models/messages.js @@ -106,7 +106,7 @@ } var c = ConversationController.get(conversationId); if (!c) { - c = ConversationController.create({id: conversationId}); + c = ConversationController.create({id: conversationId, type: 'private'}); c.fetch(); } return c;