Web: Removed adding a file to the list if a password was entered.

This commit is contained in:
Tatiana Lopaeva 2022-10-18 12:48:56 +03:00
parent d8437330ec
commit 7b4e49c58f

View File

@ -253,11 +253,13 @@ class UploadDataStore {
if (!this.filesToConversion.length) {
this.filesToConversion.push(file);
this.uploadedFilesHistory.push(file);
if (!secondConvertingWithPassword && !conversionPositionIndex)
this.uploadedFilesHistory.push(file);
this.startConversion(t);
} else {
this.filesToConversion.push(file);
this.uploadedFilesHistory.push(file);
if (!secondConvertingWithPassword && !conversionPositionIndex)
this.uploadedFilesHistory.push(file);
}
}
};