fix missing params on extension

This commit is contained in:
kspearrin 2018-08-24 17:10:52 -04:00
parent 2616a5f500
commit d278fde5f2

View file

@ -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;