Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/71386f0ceb15ce0bac2e588f90781a4bd274fe68 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Check service running before checking self restart

pull/702/head
hatharry 9 years ago
parent cabf2cdc1b
commit 71386f0ceb

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

Loading…
Cancel
Save