Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/96e8f053b56a385dc0f8c8e2c81fd0ac23794692?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
2 deletions
@ -79,7 +79,8 @@ namespace MediaBrowser.Server.Implementations.HttpServer
/// <param name="message">The message.</param>
/// <param name="message">The message.</param>
public void Debug ( object message )
public void Debug ( object message )
{
{
_logger . Debug ( GetMesssage ( message ) ) ;
// Way too verbose. Can always make this configurable if needed again.
//_logger.Debug(GetMesssage(message));
}
}
/// <summary>
/// <summary>
@ -89,7 +90,8 @@ namespace MediaBrowser.Server.Implementations.HttpServer
/// <param name="args">The args.</param>
/// <param name="args">The args.</param>
public void DebugFormat ( string format , params object [ ] args )
public void DebugFormat ( string format , params object [ ] args )
{
{
_logger . Debug ( format , args ) ;
// Way too verbose. Can always make this configurable if needed again.
//_logger.Debug(format, args);
}
}
/// <summary>
/// <summary>