Skip to content

Commit

Permalink
Fix condition
Browse files Browse the repository at this point in the history
Doh!
  • Loading branch information
davmason committed Jul 14, 2022
1 parent c6577b9 commit fe59e58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static int Main(string[] args)
Thread.Sleep(100);

if ((OperatingSystem.IsWindows() && listener.SeenProvidersAndEvents.Contains("Microsoft-Windows-DotNETRuntime/EVENTID(65)"))
|| (listener.EventCount > 0))
|| (!OperatingSystem.IsWindows() && listener.EventCount > 0))
{
break;
}
Expand Down

0 comments on commit fe59e58

Please sign in to comment.