Skip to content

Commit

Permalink
Fix bug in timed trigger interval
Browse files Browse the repository at this point in the history
  • Loading branch information
amoeba committed Feb 7, 2021
1 parent 628289a commit f467a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TimedTrigger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void Enable()
{
Timer = new System.Windows.Forms.Timer
{
Interval = Minute * 1000 // Interval is milliseconds
Interval = Minute * 60 * 1000 // Interval is milliseconds
};
Timer.Tick += Timer_Tick;
Timer.Start();
Expand Down

0 comments on commit f467a8d

Please sign in to comment.