From 249406e3a8c43624736696dbd4da19987aef9388 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Mon, 21 Aug 2023 20:30:22 +0100 Subject: [PATCH] [PM-3545] Fix biometric unlock for autofill (#2710) * [PM-3545] Fix biometric unlock for autofill * [PM-3545] Reuse existing method --- src/iOS.Core/Controllers/BaseLockPasswordViewController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } }