mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-10 17:27:40 +08:00
Fix import, wrong JSON field for username
Signed-off-by: Oliv4945 <oliv4945@gmail.com>
This commit is contained in:
parent
f7e578cbc5
commit
7fedf5446b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue