fix progress counter increasing of failed files

This commit is contained in:
Abhinav 2023-03-28 18:39:15 +05:30
parent 6c118c7c89
commit 8811567a16

View file

@ -273,8 +273,8 @@ class ExportService {
}
this.stopExport = false;
this.electronAPIs.sendNotification(t('EXPORT_NOTIFICATION.START'));
for (const [index, file] of files.entries()) {
let success = 0;
for (const file of files) {
if (this.stopExport) {
break;
}
@ -296,7 +296,8 @@ class ExportService {
file,
RecordType.SUCCESS
);
updateProgress({ current: index + 1, total: files.length });
success++;
updateProgress({ current: success, total: files.length });
} catch (e) {
logError(e, 'export failed for a file');
if (