From e679ced7662edcd4650c9bdd6bec94ff941d92cd Mon Sep 17 00:00:00 2001 From: Florian Dubois Date: Fri, 25 Jun 2021 20:23:46 +0200 Subject: [PATCH] Let's stop converting the check time into milliseconds at startup --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 2f3f248..54f9a72 100644 --- a/Program.cs +++ b/Program.cs @@ -42,7 +42,7 @@ private static async Task Main() { await CheckForNewCommits(false); }; - CheckTimer.Interval = Form1.IntervalTime * 1000; + CheckTimer.Interval = Form1.IntervalTime; CheckTimer.Enabled = true; // Default generated code to create the form.