mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
fix missing params on extension
This commit is contained in:
parent
2616a5f500
commit
d278fde5f2
1 changed files with 2 additions and 1 deletions
|
@ -83,7 +83,8 @@ namespace Bit.iOS.Extension
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var key = _cryptoService.MakeKeyFromPassword(MasterPasswordCell.TextField.Text, _authService.Email);
|
var key = _cryptoService.MakeKeyFromPassword(MasterPasswordCell.TextField.Text, _authService.Email,
|
||||||
|
_authService.Kdf, _authService.KdfIterations);
|
||||||
if(key.Key.SequenceEqual(_cryptoService.Key.Key))
|
if(key.Key.SequenceEqual(_cryptoService.Key.Key))
|
||||||
{
|
{
|
||||||
_appSettingsService.Locked = false;
|
_appSettingsService.Locked = false;
|
||||||
|
|
Loading…
Reference in a new issue