Fix inbox comparator

This commit is contained in:
lilia 2015-02-17 23:22:15 -08:00
parent 4716754209
commit 61581bae7f

View file

@ -25,7 +25,7 @@
window.inbox = new Whisper.ConversationCollection([], {
comparator: function(model) {
return -model.active_at;
return -model.get('active_at');
}
});