Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/3a3d43b7023f625a94d7cb8dd95d20b4c130f956/NzbDrone.Common/EnsureThat/Param.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Common/EnsureThat/Param.cs

24 lines
437 B

namespace NzbDrone.Common.EnsureThat
{
public abstract class Param
{
public const string DefaultName = "";
public readonly string Name;
protected Param(string name)
{
Name = name;
}
}
public class Param<T> : Param
{
public readonly T Value;
internal Param(string name, T value) : base(name)
{
Value = value;
}
}
}