Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/commit/5a3b850f1185d47f59347e58c692994e309257e5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
11 additions and
11 deletions
@ -1,7 +1,7 @@
namespace Recyclarr.Cli.Pipelines ;
/// <summary>
/// Defines a mechanism for state sharing between pipelines.
/// Defines a mechanism for state sharing between pipelines.
/// </summary>
public interface IPipelineCache
{
@ -5,19 +5,19 @@ namespace Recyclarr.Cli.Pipelines.QualityProfile;
public enum FormatScoreUpdateReason
{
/// <summary>
/// A score that is changed.
/// A score that is changed.
/// </summary>
Updated ,
/// <summary>
/// Scores were reset to a 0 value because `reset_unmatched_scores` was set to `true`.
/// Scores were reset to a 0 value because `reset_unmatched_scores` was set to `true`.
/// </summary>
Reset ,
/// <summary>
/// New custom format scores (format items) shouldn't exist normally. They do exist during
/// `--preview` runs since new custom formats that aren't synced yet won't be available when
/// processing quality profiles.
/// New custom format scores (format items) shouldn't exist normally. They do exist during
/// `--preview` runs since new custom formats that aren't synced yet won't be available when
/// processing quality profiles.
/// </summary>
New
}
@ -5,11 +5,11 @@ using Spectre.Console;
namespace Recyclarr.Cli.Processors.Config ;
/// <remarks>
/// This was originally intended to be used by `config create`, but YamlDotNet cannot serialize
/// comments so this
/// class was not used. I kept it around in case I want to revisit later. There might be an
/// opportunity to use this
/// with the GUI.
/// This was originally intended to be used by `config create`, but YamlDotNet cannot serialize
/// comments so this
/// class was not used. I kept it around in case I want to revisit later. There might be an
/// opportunity to use this
/// with the GUI.
/// </remarks>
public class ConfigManipulator : IConfigManipulator
{