Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/c8c67a825440b5acb7eebdbe81b3decd79b36b51/NzbDrone.Common/EnsureThat/Param.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/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;
}
}
}