Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/commit/c773a1a90bd8a44b616da5ffcff7be657afcc61a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
1 deletions
@ -6,11 +6,16 @@ namespace Recyclarr.Cli.Processors;
public class SyncPipelineExecutor
{
private readonly ILogger _log ;
private readonly IOrderedEnumerable < ISyncPipeline > _pipelines ;
private readonly IEnumerable < IPipelineCache > _caches ;
public SyncPipelineExecutor ( IOrderedEnumerable < ISyncPipeline > pipelines , IEnumerable < IPipelineCache > caches )
public SyncPipelineExecutor (
ILogger log ,
IOrderedEnumerable < ISyncPipeline > pipelines ,
IEnumerable < IPipelineCache > caches )
{
_log = log ;
_pipelines = pipelines ;
_caches = caches ;
}
@ -24,6 +29,7 @@ public class SyncPipelineExecutor
foreach ( var pipeline in _pipelines )
{
_log . Debug ( "Executing Pipeline: {Pipeline}" , pipeline . GetType ( ) . Name ) ;
await pipeline . Execute ( settings , config ) ;
}
}