From 143254cec8759163aae2a58a12f93252b882e2ec Mon Sep 17 00:00:00 2001 From: lilia Date: Thu, 16 Oct 2014 17:50:36 -0700 Subject: [PATCH] Group ids are stored in groupId --- js/models/threads.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/threads.js b/js/models/threads.js index 38824c9aa91..4a36df5d996 100644 --- a/js/models/threads.js +++ b/js/models/threads.js @@ -96,7 +96,7 @@ var Whisper = Whisper || {}; var attributes = {}; if (decrypted.message.group) { attributes = { - id : decrypted.message.group.id, + groupId : decrypted.message.group.id, name : decrypted.message.group.name, type : 'group', };