Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/bcaadd59bee2852303fbe991589f22ae75eca50c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
12 additions and
12 deletions
@ -224,23 +224,23 @@ namespace MediaBrowser.ServerApplication
// Not crazy about this but it's the only way to suppress ffmpeg crash dialog boxes
SetErrorMode ( ErrorModes . SEM_FAILCRITICALERRORS | ErrorModes . SEM_NOALIGNMENTFAULTEXCEPT |
ErrorModes . SEM_NOGPFAULTERRORBOX | ErrorModes . SEM_NOOPENFILEERRORBOX ) ;
}
var task = _appHost . Init ( initProgress ) ;
Task . WaitAll ( task ) ;
task = _appHost . RunStartupTasks ( ) ;
Task . WaitAll ( task ) ;
SystemEvents . SessionEnding + = SystemEvents_SessionEnding ;
SystemEvents . SessionSwitch + = SystemEvents_SessionSwitch ;
}
var task = _appHost . Init ( initProgress ) ;
task = task . ContinueWith ( new Action < Task > ( a = > _appHost . RunStartupTasks ( ) ) ) ;
if ( runService )
{
{
StartService ( logManager ) ;
}
else
{
{
Task . WaitAll ( task ) ;
SystemEvents . SessionEnding + = SystemEvents_SessionEnding ;
SystemEvents . SessionSwitch + = SystemEvents_SessionSwitch ;
HideSplashScreen ( ) ;
ShowTrayIcon ( ) ;