diff --git a/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs b/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs index d4cdd59d6..80adc9fc7 100644 --- a/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs +++ b/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs @@ -39,7 +39,7 @@ namespace Bit.App.Pages } catch(Exception e) when(e.Message.Contains("No key.")) { - await Task.Delay(5000); + await Task.Delay(1000); await _vm.LoadAsync(); } }, _mainContent); diff --git a/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs b/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs index 6335eef2d..e6644fd7f 100644 --- a/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs +++ b/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs @@ -105,7 +105,7 @@ namespace Bit.App.Pages } catch(Exception e) when(e.Message.Contains("No key.")) { - await Task.Delay(5000); + await Task.Delay(1000); await _vm.LoadAsync(); } }