Fix a bug : shadow logins passwords were not deleted

This commit is contained in:
Grégory Soutadé 2017-04-17 20:37:26 +02:00
parent a180cb62d7
commit 65f8f0f21e
1 changed files with 5 additions and 1 deletions

View File

@ -380,7 +380,11 @@ async function get_ciphered_credentials(masterkey)
if (passwords[i].ciphered_login.length)
{
if (!passwords[i].access_token.length)
old_passwords.push(passwords[i]);
{
res = await passwords[i].decrypt(masterkey);
if(res)
old_passwords.push(passwords[i]);
}
continue;
}