1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-10 21:33:36 +00:00

Fix iphone captcha throws (#1495)

This commit is contained in:
Matt Gibson
2021-08-12 09:23:02 -04:00
committed by GitHub
parent 7f7b673b0a
commit 24a0396d0f
3 changed files with 4 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ namespace Bit.App.Pages
captchaRequiredText = AppResources.CaptchaRequired,
});
var url = environmentService.WebVaultUrl + "/captcha-mobile-connector.html?" + "data=" + data +
var url = environmentService.GetWebVaultUrl() + "/captcha-mobile-connector.html?" + "data=" + data +
"&parent=" + Uri.EscapeDataString(callbackUri) + "&v=1";
WebAuthenticatorResult authResult = null;