Fix message_receiver

This commit is contained in:
Scott Nonnenberg 2018-04-13 16:38:10 -07:00
parent 04d186c05a
commit a806f32675
No known key found for this signature in database
GPG key ID: 5F82280C35134661

View file

@ -1021,11 +1021,11 @@ MessageReceiver.prototype.extend({
if (thumbnail) { if (thumbnail) {
// We don't want the failure of a thumbnail download to fail the handling of // We don't want the failure of a thumbnail download to fail the handling of
// this message entirely, like we do for full attachments. // this message entirely, like we do for full attachments.
promises.push(this.handleAttachment(thumbnail).catch(function(error) {} promises.push(this.handleAttachment(thumbnail).catch(function(error) {
console.log( console.log(
'Problem loading thumbnail for quote', 'Problem loading thumbnail for quote',
error && error.stack ? error.stack : error, error && error.stack ? error.stack : error,
)); );
})); }));
} }
} }