diff --git a/src/App/Pages/LoginTwoFactorPage.cs b/src/App/Pages/LoginTwoFactorPage.cs index 9ee15eefa..27d41dcf5 100644 --- a/src/App/Pages/LoginTwoFactorPage.cs +++ b/src/App/Pages/LoginTwoFactorPage.cs @@ -359,7 +359,7 @@ namespace Bit.App.Pages { var nfcKey = _providers[TwoFactorProviderType.YubiKey].ContainsKey("Nfc") && (bool)_providers[TwoFactorProviderType.YubiKey]["Nfc"]; - if(_deviceInfoService.NfcEnabled && nfcKey || Device.RuntimePlatform == Device.UWP) + if((_deviceInfoService.NfcEnabled && nfcKey) || Device.RuntimePlatform != Device.iOS) { options.Add(AppResources.YubiKeyTitle); } @@ -511,7 +511,7 @@ namespace Bit.App.Pages } var nfcKey = p.Value.ContainsKey("Nfc") && (bool)p.Value["Nfc"]; - if((!_deviceInfoService.NfcEnabled || !nfcKey) && Device.RuntimePlatform != Device.UWP) + if((!_deviceInfoService.NfcEnabled || !nfcKey) && Device.RuntimePlatform == Device.iOS) { continue; }