Fix message view using the wrong attribute

This commit is contained in:
lilia 2014-11-10 18:14:13 -08:00
parent cfd4ccc803
commit 3795ea5070

View file

@ -75,7 +75,7 @@
message: this.model.get('body'),
timestamp: moment(this.model.get('received_at')).fromNow(),
bubble_class: this.model.get('type') === 'outgoing' ? 'sent' : 'incoming',
sender: this.model.get('sender')
sender: this.model.get('source')
})
);