From ada3d999e044af88923cf3718654647599c426f0 Mon Sep 17 00:00:00 2001 From: lilia Date: Mon, 21 Sep 2015 11:02:33 -0700 Subject: [PATCH] Log outgoing errors // FREEBIE --- js/models/conversations.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/models/conversations.js b/js/models/conversations.js index 1fca53dcb..a4d1f727c 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -101,6 +101,7 @@ sendFunc(this.get('id'), body, attachments, now).then(function() { message.save({'sent': true}); }.bind(this)).catch(function(errors) { + console.log(errors); if (errors instanceof Error) { errors = [errors]; }