From 2a5667251e1c1647b207f55ee50d6b456b64c460 Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Tue, 15 Jun 2021 20:29:11 +0200 Subject: [PATCH] Add a 250ms sleep before prompting for password (#1431) --- src/iOS.Autofill/CredentialProviderViewController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/iOS.Autofill/CredentialProviderViewController.cs b/src/iOS.Autofill/CredentialProviderViewController.cs index 6f03d7cf0..b0a53155a 100644 --- a/src/iOS.Autofill/CredentialProviderViewController.cs +++ b/src/iOS.Autofill/CredentialProviderViewController.cs @@ -246,6 +246,8 @@ namespace Bit.iOS.Autofill } else if (!await storageService.GetAsync(Bit.Core.Constants.PasswordVerifiedAutofillKey)) { + // Add a timeout to resolve keyboard not always showing up. + await Task.Delay(250); var passwordRepromptService = ServiceContainer.Resolve("passwordRepromptService"); if (!await passwordRepromptService.ShowPasswordPromptAsync()) {