Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorbinsky <timo@binsky.org>2021-03-22 17:48:25 +0300
committerbinsky <timo@binsky.org>2021-03-22 17:48:25 +0300
commit1646b95c0cbb678af133c740cbf49fcfd4af90fd (patch)
treea3ad501edba6e779939dde94f0a3f584871f4aa9 /js
parent5f439862d5a96b5f5e8406e68b6814230a2d471a (diff)
parent64861001a37f63bc1c6e6125f2f9c9b4e53150b8 (diff)
Merge branch 'master' of https://github.com/nextcloud/passman into migrations-2
Diffstat (limited to 'js')
-rw-r--r--js/importers/importer-keepasscsv.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/importers/importer-keepasscsv.js b/js/importers/importer-keepasscsv.js
index 8bde9478..b2434577 100644
--- a/js/importers/importer-keepasscsv.js
+++ b/js/importers/importer-keepasscsv.js
@@ -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;