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

github.com/nextcloud/passman-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2017-10-29 15:05:34 +0300
committerbrantje <brantje@gmail.com>2017-10-29 15:05:34 +0300
commit4ae6ca5b2324b96fcc8dc360e9c9a89d1f663849 (patch)
tree3eeb084a9edf1f517bf32fca3169bb0b164ee65f
parent29b6339add2996e633e7d4941eb78e419bb32c82 (diff)
Fix empty vault name after creating credentialfixEmptyVaultName
-rw-r--r--js/background/service/background.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/background/service/background.js b/js/background/service/background.js
index cd586fd..f8f208f 100644
--- a/js/background/service/background.js
+++ b/js/background/service/background.js
@@ -510,7 +510,7 @@ var background = (function () {
credential.label = sender.tab.title;
credential.vault_id = credential.account.vault.vault_id;
PAPI.createCredential(credential.account, credential, credential.account.vault_password, function (createdCredential) {
- createdCredential.account = credential.account;
+ createdCredential.account = args.account;
saveMinedCallback({credential: credential, updated: false, sender: sender});
local_credentials.push(createdCredential);
delete mined_data[sender.tab.id];