diff --git a/src/App/Pages/CaptchaProtectedViewModel.cs b/src/App/Pages/CaptchaProtectedViewModel.cs index d31d338ae..042d1423c 100644 --- a/src/App/Pages/CaptchaProtectedViewModel.cs +++ b/src/App/Pages/CaptchaProtectedViewModel.cs @@ -37,11 +37,14 @@ namespace Bit.App.Pages bool cancelled = false; try { + // PrefersEphemeralWebBrowserSession should be false to allow access to the hCaptcha accessibility + // cookie set in the default browser + // https://www.hcaptcha.com/accessibility var options = new WebAuthenticatorOptions { Url = new Uri(url), CallbackUrl = new Uri(callbackUri), - PrefersEphemeralWebBrowserSession = true, + PrefersEphemeralWebBrowserSession = false, }; authResult = await WebAuthenticator.AuthenticateAsync(options); }