diff --git a/Elwig/App.xaml.cs b/Elwig/App.xaml.cs index d92c9da..af793e3 100644 --- a/Elwig/App.xaml.cs +++ b/Elwig/App.xaml.cs @@ -128,7 +128,7 @@ namespace Elwig { if (Config.UpdateAuto && Config.UpdateUrl != null) { if (Utils.HasInternetConnectivity()) { Utils.RunBackground("Auto Updater", async () => { - await Task.Delay(500); + await Task.Delay(1000); await CheckForUpdates(); }); } @@ -234,7 +234,7 @@ namespace Elwig { if (!evt.IsAvailable) return; if (Utils.HasInternetConnectivity()) { Utils.RunBackground("Auto Updater", async () => { - await Task.Delay(500); + await Task.Delay(2000); await CheckForUpdates(); }); }