Skip to content

Commit

Permalink
Fixed #11
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonyCorbett committed Jun 16, 2019
1 parent 5382396 commit 9eb6e35
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions JwlMediaWin.Core/FixerRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ public void Start()

private static int GetIntervalMilliseconds(FixerStatus results)
{
if (results.FindWindowResult == null)
{
return IntervalSecsWatchingForWindow * 1000;
}

return results.FindWindowResult.JwlRunning
? IntervalSecsWatchingForProcess * 1000
: IntervalSecsWatchingForWindow * 1000;
Expand Down
2 changes: 1 addition & 1 deletion SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("1.0.0.7")]
[assembly: AssemblyVersion("1.0.0.8")]

0 comments on commit 9eb6e35

Please sign in to comment.