fix missing params on extension

This commit is contained in:
kspearrin 2018-08-24 17:10:52 -04:00
parent 2616a5f500
commit d278fde5f2
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ namespace Bit.iOS.Extension
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))
{
_appSettingsService.Locked = false;