Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
Start cipher numbering at 1 in error messages (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliykat committed Feb 25, 2021
1 parent 42348e2 commit 00122ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/import.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ export class ImportService implements ImportServiceAbstraction {
}

if (itemType !== 'Folder' && itemType !== 'Collection') {
errorMessage += '[' + i + '] ';
errorMessage += '[' + (i + 1) + '] ';
}

errorMessage += '[' + itemType + '] "' + item.name + '": ' + value;
Expand Down

0 comments on commit 00122ab

Please sign in to comment.