1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-29 04:07:37 +02:00

shorter delays

This commit is contained in:
Kyle Spearrin 2019-10-05 21:31:55 -04:00
parent 0e966c0304
commit 54fcabaea6
2 changed files with 2 additions and 2 deletions

View File

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

View File

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