Change default value for active_at

We're overriding the default with null often enough that we should
just change the default.

Consequently, no more phantom blank conversations with oneself should
appear after receiving a group update. They were being added to the
inbox because they were incorrectly initialized with an active_at value.

Fixes #281
This commit is contained in:
lilia 2015-07-14 16:40:09 -07:00
parent 809c9bdb57
commit 853b578551
4 changed files with 2 additions and 7 deletions

View file

@ -132,7 +132,6 @@
this.new_contact = new Whisper.ConversationListItemView({
el: this.$new_contact,
model: new Whisper.Conversation({
active_at: null,
type: 'private',
newContact: true
})