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