1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

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

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();