Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/61d9c9df5b4ad4b79679cccbb2a624447c824b67
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
6 deletions
@ -242,9 +242,7 @@ namespace Emby.Server.Implementations.HttpServer
private async Task ErrorHandler ( Exception ex , IRequest httpReq , bool logExceptionStackTrace , string urlToLog )
{
string urlSuffix = string . IsNullOrWhiteSpace ( urlToLog )
? string . Format ( CultureInfo . InvariantCulture , "; URL being processed: {0}" , urlToLog )
: "" ;
string urlSuffix = string . Format ( CultureInfo . InvariantCulture , "; URL being processed: {0}" , urlToLog ) ;
try
{
ex = GetActualException ( ex ) ;
@ -460,7 +458,7 @@ namespace Emby.Server.Implementations.HttpServer
var stopWatch = new Stopwatch ( ) ;
stopWatch . Start ( ) ;
var httpRes = httpReq . Response ;
string urlToLog = null ;
string urlToLog = GetUrlToLog ( urlString ) ;
string remoteIp = httpReq . RemoteIp ;
try
@ -506,8 +504,6 @@ namespace Emby.Server.Implementations.HttpServer
return ;
}
urlToLog = GetUrlToLog ( urlString ) ;
if ( string . Equals ( localPath , _baseUrlPrefix + "/" , StringComparison . OrdinalIgnoreCase )
| | string . Equals ( localPath , _baseUrlPrefix , StringComparison . OrdinalIgnoreCase )
| | string . Equals ( localPath , "/" , StringComparison . OrdinalIgnoreCase )