Check service running before checking self restart

This commit is contained in:
hatharry 2016-08-29 01:42:25 +12:00
parent cabf2cdc1b
commit 71386f0ceb

View file

@ -45,7 +45,11 @@ namespace MediaBrowser.ServerApplication
{ {
var options = new StartupOptions(); var options = new StartupOptions();
_isRunningAsService = options.ContainsOption("-service"); _isRunningAsService = options.ContainsOption("-service");
_canRestartService = CanRestartWindowsService();
if (_isRunningAsService)
{
_canRestartService = CanRestartWindowsService();
}
var currentProcess = Process.GetCurrentProcess(); var currentProcess = Process.GetCurrentProcess();