Skip to content

Commit

Permalink
Let's stop converting the check time into milliseconds at startup
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianLeChat committed Jun 25, 2021
1 parent 9a1bb6b commit e679ced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit e679ced

Please sign in to comment.