From 46c36c3143b93ac95b472cb0da476c7a60cf46ce Mon Sep 17 00:00:00 2001 From: brantje Date: Sun, 25 Sep 2016 23:04:52 +0200 Subject: [PATCH] Check if label exists --- js/importers/importer-clipperz.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/importers/importer-clipperz.js b/js/importers/importer-clipperz.js index e0e5f0a8..e921613a 100644 --- a/js/importers/importer-clipperz.js +++ b/js/importers/importer-clipperz.js @@ -41,7 +41,9 @@ PassmanImporter.clippers.readFile = function (file_data) { } ) } - credential_list.push(_credential); + if(_credential.label){ + credential_list.push(_credential); + } } } return credential_list;