Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/8023d503cb279263c1d53a6589c46d38b14c0396
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
8 additions and
14 deletions
@ -93,11 +93,8 @@ namespace Emby.Server.Implementations.ScheduledTasks
public ScheduledTaskWorker ( IScheduledTask scheduledTask , IApplicationPaths applicationPaths , ITaskManager taskManager , ILogger logger )
{
ArgumentNullException . ThrowIfNull ( scheduledTask ) ;
ArgumentNullException . ThrowIfNull ( applicationPaths ) ;
ArgumentNullException . ThrowIfNull ( taskManager ) ;
ArgumentNullException . ThrowIfNull ( logger ) ;
ScheduledTask = scheduledTask ;
@ -332,7 +329,7 @@ namespace Emby.Server.Implementations.ScheduledTasks
return ;
}
_logger . Log Information ( "{0} fired for task: {1}" , trigger . GetType ( ) . Name , Name ) ;
_logger . Log Debug ( "{0} fired for task: {1}" , trigger . GetType ( ) . Name , Name ) ;
trigger . Stop ( ) ;
@ -378,7 +375,7 @@ namespace Emby.Server.Implementations.ScheduledTasks
CurrentCancellationTokenSource = new CancellationTokenSource ( ) ;
_logger . Log Information ( "Executing {0}" , Name ) ;
_logger . Log Debug ( "Executing {0}" , Name ) ;
( ( TaskManager ) _taskManager ) . OnTaskExecuting ( this ) ;
@ -406,7 +403,7 @@ namespace Emby.Server.Implementations.ScheduledTasks
}
catch ( Exception ex )
{
_logger . LogError ( ex , "Error ") ;
_logger . LogError ( ex , "Error executing Scheduled Task ") ;
failureException = ex ;
@ -132,7 +132,7 @@ namespace Emby.Server.Implementations.ScheduledTasks
{
var type = scheduledTask . ScheduledTask . GetType ( ) ;
_logger . Log Information ( "Queuing task {0}" , type . Name ) ;
_logger . Log Debug ( "Queuing task {0}" , type . Name ) ;
lock ( _taskQueue )
{
@ -172,7 +172,7 @@ namespace Emby.Server.Implementations.ScheduledTasks
{
var type = task . ScheduledTask . GetType ( ) ;
_logger . Log Information ( "Queuing task {0}" , type . Name ) ;
_logger . Log Debug ( "Queuing task {0}" , type . Name ) ;
lock ( _taskQueue )
{
@ -254,9 +254,6 @@ namespace Emby.Server.Implementations.ScheduledTasks
/// </summary>
private void ExecuteQueuedTasks ( )
{
_logger . LogInformation ( "ExecuteQueuedTasks" ) ;
// Execute queued tasks
lock ( _taskQueue )
{
var list = new List < Tuple < Type , TaskOptions > > ( ) ;
@ -1019,8 +1019,8 @@ namespace Jellyfin.Networking.Manager
_internalInterfaces = CreateCollection ( _interfaceAddresses . Where ( IsInLocalNetwork ) ) ;
}
_logger . LogInformation ( "Defined LAN addresses : {0}", _lanSubnets . AsString ( ) ) ;
_logger . LogInformation ( "Defined LAN exclusions : {0}", _excludedSubnets . AsString ( ) ) ;
_logger . LogInformation ( "Defined LAN addresses : {0}", _lanSubnets . AsString ( ) ) ;
_logger . LogInformation ( "Defined LAN exclusions : {0}", _excludedSubnets . AsString ( ) ) ;
_logger . LogInformation ( "Using LAN addresses: {0}" , _lanSubnets . Exclude ( _excludedSubnets , true ) . AsNetworks ( ) . AsString ( ) ) ;
}
}
@ -1145,7 +1145,7 @@ namespace Jellyfin.Networking.Manager
}
_logger . LogDebug ( "Discovered {0} interfaces." , _interfaceAddresses . Count ) ;
_logger . LogDebug ( "Interfaces addresses : {0}", _interfaceAddresses . AsString ( ) ) ;
_logger . LogDebug ( "Interfaces addresses : {0}", _interfaceAddresses . AsString ( ) ) ;
}
}