Merge pull request #2411 from oxen-io/clearnet

fix: revert to allow 3 attachments download at a time
pull/2465/head v1.9.0
Audric Ackermann 3 years ago committed by GitHub
commit 45889ad6bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,7 +10,7 @@ import { initializeAttachmentLogic, processNewAttachment } from '../../types/Mes
import { getAttachmentMetadata } from '../../types/message/initializeAttachmentMetadata';
// this cause issues if we increment that value to > 1.
const MAX_ATTACHMENT_JOB_PARALLELISM = 1;
const MAX_ATTACHMENT_JOB_PARALLELISM = 3;
const TICK_INTERVAL = Constants.DURATION.MINUTES;
// tslint:disable: function-name
@ -231,7 +231,11 @@ async function _runJob(job: any) {
);
found = await Data.getMessageById(messageId);
_addAttachmentToMessage(found, _markAttachmentAsError(attachment), { type, index });
try {
_addAttachmentToMessage(found, _markAttachmentAsError(attachment), { type, index });
} catch (e) {
// just swallow any exceptions here, as it would be an unhandled one
}
await _finishJob(found || null, id);
return;

Loading…
Cancel
Save