1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-10-02 04:37:50 +02:00

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

* [PM-3545] Fix biometric unlock for autofill

* [PM-3545] Reuse existing method
This commit is contained in:
André Bispo 2023-08-21 20:30:22 +01:00 committed by GitHub
parent 8cae840c68
commit 249406e3a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}
}