This commit is contained in:
Philipinho
2025-06-08 18:55:57 -07:00
parent 097e30e992
commit cbaf3394c0
11 changed files with 166 additions and 74 deletions

View File

@ -260,7 +260,11 @@ export class ImportAttachmentService {
}
// wait for all uploads & DB inserts
await Promise.all(attachmentTasks);
try {
await Promise.all(attachmentTasks);
} catch (err) {
this.logger.log('Import attachment upload error', err);
}
return $.root().html() || '';
}