diff --git a/src/iOS.Core/Controllers/BaseLockPasswordViewController.cs b/src/iOS.Core/Controllers/BaseLockPasswordViewController.cs index 60691b8bb..4712f418f 100644 --- a/src/iOS.Core/Controllers/BaseLockPasswordViewController.cs +++ b/src/iOS.Core/Controllers/BaseLockPasswordViewController.cs @@ -367,7 +367,8 @@ namespace Bit.iOS.Core.Controllers await _stateService.SetBiometricLockedAsync(!success); if (success) { - DoContinue(); + var userKey = await _cryptoService.GetBiometricUnlockKeyAsync(); + await SetKeyAndContinueAsync(userKey); } }