1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

[PM-3545] Fix biometric unlock for autofill (#2710)

* [PM-3545] Fix biometric unlock for autofill

* [PM-3545] Reuse existing method

Commit:
249406e3a8 [249406e3]
This commit is contained in:
André Bispo
2023-08-21 20:49:37 +01:00
parent 2841a0e28d
commit a9731853ca

View File

@@ -367,7 +367,8 @@ namespace Bit.iOS.Core.Controllers
await _stateService.SetBiometricLockedAsync(!success);
if (success)
{
DoContinue();
var userKey = await _cryptoService.GetBiometricUnlockKeyAsync();
await SetKeyAndContinueAsync(userKey);
}
}