From c8d0db9f31d1b30fe2559d8013e905f5d8e600c9 Mon Sep 17 00:00:00 2001 From: Federico Maccaroni Date: Wed, 15 May 2024 13:25:27 -0300 Subject: [PATCH] PM-8051 Fix 2FA launch from iOS autofill, was missing passing appOptions to the App (#3244) --- src/iOS.Autofill/CredentialProviderViewController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iOS.Autofill/CredentialProviderViewController.cs b/src/iOS.Autofill/CredentialProviderViewController.cs index c9e62c70a..3fc93f0e2 100644 --- a/src/iOS.Autofill/CredentialProviderViewController.cs +++ b/src/iOS.Autofill/CredentialProviderViewController.cs @@ -699,7 +699,7 @@ namespace Bit.iOS.Autofill { var appOptions = new AppOptions { IosExtension = true }; var twoFactorPage = new TwoFactorPage(authingWithSso, appOptions); - var app = new App.App(); + var app = new App.App(appOptions); ThemeManager.SetTheme(app.Resources); ThemeManager.ApplyResourcesTo(twoFactorPage); if (twoFactorPage.BindingContext is TwoFactorPageViewModel vm)