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:
authornewhinton <newhinton@users.noreply.github.com>2018-12-11 18:09:20 +0300
committerGitHub <noreply@github.com>2018-12-11 18:09:20 +0300
commite471119a37f76c1ac5fcd3fc886c2687c3dfb960 (patch)
treec76babb2177209b8680ac0d52d474b265179b6cb /js
parent7e38d756b34d438c950314555e1eb24e370df56f (diff)
parent7fedf5446bb3c842f9e04a7ff96dcecfd469b8e9 (diff)
Merge pull request #513 from Oliv4945/importerJsonFix
Fix import, wrong JSON field for username
Diffstat (limited to 'js')
-rw-r--r--js/importers/importer-passmanjson.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/importers/importer-passmanjson.js b/js/importers/importer-passmanjson.js
index 6f32ceda..ab9a4856 100644
--- a/js/importers/importer-passmanjson.js
+++ b/js/importers/importer-passmanjson.js
@@ -42,7 +42,7 @@ var PassmanImporter = PassmanImporter || {};
var item = parsed_json[i];
var _credential = PassmanImporter.newCredential();
_credential.label = item.label;
- _credential.username = item.account;
+ _credential.username = item.username;
_credential.password = item.password;
_credential.email = item.email;
_credential.url = item.url;