Delete last timestamp on a convo when deleting messages

// FREEBIE
pull/749/head
lilia 10 years ago
parent 6f3f33657a
commit 8b3596b956

@ -283,7 +283,7 @@
var models = this.messageCollection.models; var models = this.messageCollection.models;
this.messageCollection.reset([]); this.messageCollection.reset([]);
_.each(models, function(message) { message.destroy(); }); _.each(models, function(message) { message.destroy(); });
this.save({active_at: null, lastMessage: ''}); // archive this.save({active_at: null, lastMessage: '', timestamp: null}); // archive
}.bind(this)); }.bind(this));
}, },

Loading…
Cancel
Save