Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/commit/3b44964479932d266d8f4f61df828b2bb41ce145
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
24 additions and
4 deletions
@ -1,6 +1,7 @@
using System.Reactive.Linq ;
using Autofac ;
using CliFx.Attributes ;
using CliFx.Infrastructure ;
using JetBrains.Annotations ;
using Recyclarr.Cli.Config ;
using Recyclarr.TrashLib.Config.Services ;
@ -38,6 +39,7 @@ internal class RadarrCommand : ServiceCommand
var lister = container . Resolve < IRadarrGuideDataLister > ( ) ;
var log = container . Resolve < ILogger > ( ) ;
var guideService = container . Resolve < IRadarrGuideService > ( ) ;
var console = container . Resolve < IConsole > ( ) ;
if ( ListCustomFormats )
{
@ -60,8 +62,16 @@ internal class RadarrCommand : ServiceCommand
builder . RegisterInstance ( config ) . As < IServiceConfiguration > ( ) ;
} ) ;
log . Information ( "Processing {Server} server {Name}" ,
Name , config . Name ? ? FlurlLogging . SanitizeUrl ( config . BaseUrl ) ) ;
var serverName = Name ;
var instanceName = config . Name ? ? FlurlLogging . SanitizeUrl ( config . BaseUrl ) ;
await console . Output . WriteLineAsync ( $ @ "
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
Processing { serverName } Server : [ { instanceName } ]
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
");
log . Debug ( "Processing {Server} server {Name}" , serverName , instanceName ) ;
// There's no actual compatibility checks to perform yet. We directly access the RadarrCompatibility class,
// as opposed to a IRadarrVersionEnforcement object (like Sonarr does), simply to force the API invocation
@ -1,6 +1,7 @@
using Autofac ;
using CliFx.Attributes ;
using CliFx.Exceptions ;
using CliFx.Infrastructure ;
using JetBrains.Annotations ;
using Recyclarr.Cli.Config ;
using Recyclarr.TrashLib.Config.Services ;
@ -51,6 +52,7 @@ public class SonarrCommand : ServiceCommand
var lister = container . Resolve < ISonarrGuideDataLister > ( ) ;
var log = container . Resolve < ILogger > ( ) ;
var guideService = container . Resolve < ISonarrGuideService > ( ) ;
var console = container . Resolve < IConsole > ( ) ;
if ( ListReleaseProfiles )
{
@ -94,8 +96,16 @@ public class SonarrCommand : ServiceCommand
builder . RegisterInstance ( config ) . As < IServiceConfiguration > ( ) ;
} ) ;
log . Information ( "Processing {Server} server {Name}" ,
Name , config . Name ? ? FlurlLogging . SanitizeUrl ( config . BaseUrl ) ) ;
var serverName = Name ;
var instanceName = config . Name ? ? FlurlLogging . SanitizeUrl ( config . BaseUrl ) ;
await console . Output . WriteLineAsync ( $ @ "
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
Processing { serverName } Server : [ { instanceName } ]
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
");
log . Debug ( "Processing {Server} server {Name}" , serverName , instanceName ) ;
var versionEnforcement = scope . Resolve < ISonarrVersionEnforcement > ( ) ;
await versionEnforcement . DoVersionEnforcement ( config ) ;