Start cipher numbering at 1 in error messages (#283)

This commit is contained in:
Thomas Rittson 2021-02-26 05:53:45 +10:00 committed by GitHub
parent 42348e2fdc
commit 00122ab166
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ export class ImportService implements ImportServiceAbstraction {
}
if (itemType !== 'Folder' && itemType !== 'Collection') {
errorMessage += '[' + i + '] ';
errorMessage += '[' + (i + 1) + '] ';
}
errorMessage += '[' + itemType + '] "' + item.name + '": ' + value;