Skip to content

Commit

Permalink
Fixed uninstall warning message.
Browse files Browse the repository at this point in the history
  • Loading branch information
RickDB authored and RickDB committed Dec 29, 2016
1 parent 5216b8f commit 681afaa
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions JMMServer/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -425,10 +425,8 @@ void UninstallJMMServer()
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = jmmServerUninstallPath;
startInfo.Arguments = " /SILENT";
startInfo.CreateNoWindow = true;

Process p = Process.Start(startInfo);
p?.Start();
Process.Start(startInfo);

logger.Log(LogLevel.Info, "JMM Server successfully uninstalled");
}
Expand Down

0 comments on commit 681afaa

Please sign in to comment.