Skip to content
This repository has been archived by the owner on Jun 22, 2021. It is now read-only.

Commit

Permalink
Fix for running process detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciaran Fisher committed Oct 29, 2015
1 parent 8b06f82 commit 306c142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Installer/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private bool Is_SimpleRadio_running()
{
foreach (Process clsProcess in Process.GetProcesses())
{
if (clsProcess.ProcessName.ToLower().Contains("dcs-simpleradio"))
if (clsProcess.ProcessName.ToLower().Equals("dcs-simpleradio"))
{
return true;
}
Expand Down

0 comments on commit 306c142

Please sign in to comment.