Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/3a7329e414834efed93f966a48676230de53c034
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
16 additions and
6 deletions
@ -123,9 +123,9 @@ namespace MediaBrowser.Api.System
return ToOptimizedResult ( result ) ;
}
public void Post ( PingSystem request )
public object Post ( PingSystem request )
{
return _appHost . Name ;
}
public object Get ( GetServerLogs request )
@ -1181,17 +1181,27 @@ namespace MediaBrowser.Server.Startup.Common
{
Url = apiUrl ,
LogErrorResponseBody = false ,
LogErrors = false
LogErrors = false ,
LogRequest = false
} , "POST" ) . Result )
{
_validAddressResults . AddOrUpdate ( apiUrl , true , ( k , v ) = > true ) ;
return true ;
using ( var reader = new StreamReader ( response . Content ) )
{
var result = reader . ReadToEnd ( ) ;
var valid = string . Equals ( Name , result , StringComparison . OrdinalIgnoreCase ) ;
_validAddressResults . AddOrUpdate ( apiUrl , valid , ( k , v ) = > valid ) ;
Logger . Debug ( "Ping test result to {0}. Success: {1}" , apiUrl , valid ) ;
return valid ;
}
}
}
catch
{
_validAddressResults . AddOrUpdate ( apiUrl , true , ( k , v ) = > false ) ;
Logger . Debug ( "Ping test result to {0}. Success: {1}" , apiUrl , false ) ;
_validAddressResults . AddOrUpdate ( apiUrl , false , ( k , v ) = > false ) ;
return false ;
}
}