From 67ba342c28b5c7768f523a64e4032bab69097d8e Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Mon, 29 Sep 2025 16:14:16 +0200 Subject: [PATCH] App: Delay auto update check even more --- Elwig/App.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }); }