mirror of
https://github.com/nextcloud/passman.git
synced 2024-12-27 01:52:56 +08:00
Remove temp var
This commit is contained in:
parent
0ff6065f4b
commit
9dd4a86ec4
1 changed files with 1 additions and 4 deletions
|
@ -101,11 +101,8 @@ angular.module('passmanApp')
|
||||||
_vault.vaultKey = angular.copy(vault_key);
|
_vault.vaultKey = angular.copy(vault_key);
|
||||||
|
|
||||||
VaultService.setActiveVault(_vault);
|
VaultService.setActiveVault(_vault);
|
||||||
|
|
||||||
|
|
||||||
var challenge_password = vault.challenge_password;
|
|
||||||
try {
|
try {
|
||||||
var c = EncryptService.decryptString(challenge_password);
|
var c = EncryptService.decryptString(vault.challenge_password);
|
||||||
if ($scope.remember_vault_password) {
|
if ($scope.remember_vault_password) {
|
||||||
SettingsService.setSetting('defaultVaultPass', vault_key);
|
SettingsService.setSetting('defaultVaultPass', vault_key);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue