Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/commit/018d5f0157d0975e55e725220ab588384305c195
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
20 additions and
0 deletions
@ -11,6 +11,11 @@ public record TermData
public string Name { get ; init ; } = string . Empty ;
public string Term { get ; init ; } = string . Empty ;
public sealed override string ToString ( )
{
return $"[TrashId: {TrashId}] [Name: {Name}] [Term: {Term}]" ;
}
}
[UsedImplicitly(ImplicitUseTargetFlags.WithMembers)]
@ -24,6 +29,11 @@ public record PreferredTermData
score = Score ;
terms = Terms ;
}
public sealed override string ToString ( )
{
return $"[Score: {Score}] [Terms: {Terms.Count}]" ;
}
}
[UsedImplicitly(ImplicitUseTargetFlags.WithMembers)]
@ -37,4 +47,14 @@ public record ReleaseProfileData
public IReadOnlyCollection < TermData > Required { get ; init ; } = Array . Empty < TermData > ( ) ;
public IReadOnlyCollection < TermData > Ignored { get ; init ; } = Array . Empty < TermData > ( ) ;
public IReadOnlyCollection < PreferredTermData > Preferred { get ; init ; } = Array . Empty < PreferredTermData > ( ) ;
public sealed override string ToString ( )
{
return $"[TrashId: {TrashId}] " +
$"[Name: {Name}] " +
$"[IncludePreferred: {IncludePreferredWhenRenaming}] " +
$"[Required: {Required.Count}] " +
$"[Ignored: {Ignored.Count}] " +
$"[Preferred: {Preferred.Count}]" ;
}
}