saveError on message sending without connection on private chat

pull/1381/head
Audric Ackermann 4 years ago
parent e45ce43e01
commit e479ee6332
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -1211,12 +1211,20 @@
// We're offline!
if (!textsecure.messaging) {
const errors = this.contactCollection.map(contact => {
let errors;
if (this.contactCollection.length) {
errors = this.contactCollection.map(contact => {
const error = new Error('Network is not available');
error.name = 'SendMessageNetworkError';
error.number = contact.id;
return error;
});
} else {
const error = new Error('Network is not available');
error.name = 'SendMessageNetworkError';
error.number = contact.id;
return error;
});
error.number = this.id;
errors = [error];
}
await message.saveErrors(errors);
return null;
}

Loading…
Cancel
Save