Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/6647ff335fc8cf92aad5a5031280b7f92d2ffd50?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

update startup error handling

pull/1154/head
Luke Pulverenti 9 years ago
parent 3b4975323c
commit 6647ff335f

@ -244,7 +244,9 @@ namespace MediaBrowser.ServerApplication
var task = _appHost.Init(initProgress);
task = task.ContinueWith(new Action<Task>(a => _appHost.RunStartupTasks()));
Task.WaitAll(task);
task = task.ContinueWith(new Action<Task>(a => _appHost.RunStartupTasks()), TaskContinuationOptions.OnlyOnRanToCompletion | TaskContinuationOptions.AttachedToParent);
if (runService)
{

Loading…
Cancel
Save