Refresh group contacts when rendering member list

Fix #581

// FREEBIE
This commit is contained in:
lilia 2016-01-12 11:06:14 -08:00
parent b2bed9c51c
commit cdd139b44c

View file

@ -123,8 +123,10 @@
}, },
viewMembers: function() { viewMembers: function() {
var view = new Whisper.GroupMemberList({ model: this.model }); return this.model.fetchContacts().then(function() {
this.listenBack(view); var view = new Whisper.GroupMemberList({ model: this.model });
this.listenBack(view);
}.bind(this));
}, },
openInbox: function() { openInbox: function() {