Fix lint issues in message_receiver.js

This commit is contained in:
Scott Nonnenberg 2018-04-13 17:21:06 -07:00
parent a806f32675
commit feb68b24b4
No known key found for this signature in database
GPG Key ID: 5F82280C35134661
1 changed files with 2 additions and 2 deletions

View File

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