From 0db49af310ac1619cff1a30f88e69218976d7670 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Tue, 24 Sep 2024 12:24:20 +0200 Subject: [PATCH] Config writing tweaks --- app/AppConfig.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index 2ab12789..10487030 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -90,13 +90,12 @@ public static class AppConfig return; } - Thread.Sleep(1000); + Thread.Sleep(500); var backupText = File.ReadAllText(backup); if (backupText.Contains("{") && backupText.Contains("}")) { - //Logger.WriteLine("Config written"); File.Copy(backup, configFile, true); } else