diff --git a/src/App/Pages/Vault/CiphersPageViewModel.cs b/src/App/Pages/Vault/CiphersPageViewModel.cs index 7ca3f82d8..9025c7341 100644 --- a/src/App/Pages/Vault/CiphersPageViewModel.cs +++ b/src/App/Pages/Vault/CiphersPageViewModel.cs @@ -208,6 +208,11 @@ namespace Bit.App.Pages } else if (selection == AppResources.Autofill || selection == AppResources.AutofillAndSave) { + if (cipher.Reprompt != CipherRepromptType.None && !await _passwordRepromptService.ShowPasswordPromptAsync()) + { + return; + } + if (selection == AppResources.AutofillAndSave) { var uris = cipher.Login?.Uris?.ToList();