1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-26 12:16:07 +01:00

wait 5 seconds after migration

This commit is contained in:
Kyle Spearrin 2019-07-05 17:37:21 -04:00
parent 8e485ff26f
commit 066b3aba5b

View File

@ -45,7 +45,7 @@ namespace Bit.iOS
if(App.Migration.MigrationHelpers.NeedsMigration())
{
var task = App.Migration.MigrationHelpers.PerformMigrationAsync();
Task.Delay(2000).Wait();
Task.Delay(5000).Wait();
}
_deviceActionService = ServiceContainer.Resolve<IDeviceActionService>("deviceActionService");