Fix lint warning with recent merge (#70)

This commit is contained in:
Vincent Salucci 2020-02-12 15:17:24 -06:00 committed by GitHub
parent fea1c9ada4
commit 118bdb20b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ export class OnePassword1PifImporter extends BaseImporter implements Importer {
return;
}
const item = JSON.parse(line);
if(item.trashed === true) {
if (item.trashed === true) {
return;
}
const cipher = this.initLoginCipher();