mirror of
https://github.com/nextcloud/passman.git
synced 2025-02-26 00:14:44 +08:00
Handles the keepass comments field
Signed-off-by: Dennison Williams <Dennison.Williams@stjamesinfirmary.org>
This commit is contained in:
parent
5173922832
commit
9d9d92682a
1 changed files with 1 additions and 0 deletions
|
@ -46,6 +46,7 @@ var PassmanImporter = PassmanImporter || {};
|
||||||
_credential.username = row.login_name;
|
_credential.username = row.login_name;
|
||||||
_credential.password = row.password;
|
_credential.password = row.password;
|
||||||
_credential.url = row.web_site;
|
_credential.url = row.web_site;
|
||||||
|
_credential.description = row.comments;
|
||||||
if (row.hasOwnProperty('expires')) {
|
if (row.hasOwnProperty('expires')) {
|
||||||
row.expires = row.expires.replace('"', '');
|
row.expires = row.expires.replace('"', '');
|
||||||
_credential.expire_time = new Date(row.expires).getTime() / 1000;
|
_credential.expire_time = new Date(row.expires).getTime() / 1000;
|
||||||
|
|
Loading…
Reference in a new issue