validating

This commit is contained in:
Kyle Spearrin 2019-06-01 00:13:36 -04:00
parent d1646e5aca
commit 638de90cc4
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ namespace Bit.App.Pages
await LoadOnAppearedAsync(_scrollView, true, () =>
{
_vm.Init();
if(_vm.TotpMethod)
if(_vm.TotpMethod || _vm.YubikeyMethod)
{
RequestFocus(_totpEntry);
}

View File

@ -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));