From 638de90cc458f11457d9977d82fd53122c234e5f Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 1 Jun 2019 00:13:36 -0400 Subject: [PATCH] validating --- src/App/Pages/Accounts/TwoFactorPage.xaml.cs | 2 +- src/App/Pages/Accounts/TwoFactorPageViewModel.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/Pages/Accounts/TwoFactorPage.xaml.cs b/src/App/Pages/Accounts/TwoFactorPage.xaml.cs index 214db64a7..f400760b0 100644 --- a/src/App/Pages/Accounts/TwoFactorPage.xaml.cs +++ b/src/App/Pages/Accounts/TwoFactorPage.xaml.cs @@ -70,7 +70,7 @@ namespace Bit.App.Pages await LoadOnAppearedAsync(_scrollView, true, () => { _vm.Init(); - if(_vm.TotpMethod) + if(_vm.TotpMethod || _vm.YubikeyMethod) { RequestFocus(_totpEntry); } diff --git a/src/App/Pages/Accounts/TwoFactorPageViewModel.cs b/src/App/Pages/Accounts/TwoFactorPageViewModel.cs index 177bcbdb8..0ce54fe97 100644 --- a/src/App/Pages/Accounts/TwoFactorPageViewModel.cs +++ b/src/App/Pages/Accounts/TwoFactorPageViewModel.cs @@ -187,7 +187,7 @@ namespace Bit.App.Pages try { - await _deviceActionService.ShowLoadingAsync(AppResources.LoggingIn); + await _deviceActionService.ShowLoadingAsync(AppResources.Validating); await _authService.LogInTwoFactorAsync(SelectedProviderType.Value, Token, Remember); await _deviceActionService.HideLoadingAsync(); var task = Task.Run(() => _syncService.FullSyncAsync(true));