Handles the keepass comments field

Signed-off-by: Dennison Williams <Dennison.Williams@stjamesinfirmary.org>
This commit is contained in:
Dennison Williams 2020-11-19 14:14:59 -08:00 committed by Dennison Williams
parent 5173922832
commit 9d9d92682a

View file

@ -46,6 +46,7 @@ var PassmanImporter = PassmanImporter || {};
_credential.username = row.login_name;
_credential.password = row.password;
_credential.url = row.web_site;
_credential.description = row.comments;
if (row.hasOwnProperty('expires')) {
row.expires = row.expires.replace('"', '');
_credential.expire_time = new Date(row.expires).getTime() / 1000;