mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 04:09:49 +00:00
Fix message_receiver
This commit is contained in:
@@ -1021,11 +1021,11 @@ 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(function(error) {
|
||||
console.log(
|
||||
'Problem loading thumbnail for quote',
|
||||
error && error.stack ? error.stack : error,
|
||||
));
|
||||
);
|
||||
}));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user