From 066b3aba5b6bd910fde7ab958bf20b3615613ed8 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 5 Jul 2019 17:37:21 -0400 Subject: [PATCH] wait 5 seconds after migration --- src/iOS/AppDelegate.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iOS/AppDelegate.cs b/src/iOS/AppDelegate.cs index bc67adf46..cea7d4cd9 100644 --- a/src/iOS/AppDelegate.cs +++ b/src/iOS/AppDelegate.cs @@ -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("deviceActionService");