Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/fd88f17eaddf705195f58d49455e77c22d0c8df5/NzbDrone.Core/Annotations/FieldDefinitionAttribute.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Core/Annotations/FieldDefinitionAttribute.cs

25 lines
562 B

using System;
namespace NzbDrone.Core.Annotations
{
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class FieldDefinitionAttribute : Attribute
{
public FieldDefinitionAttribute(int order)
{
Order = order;
}
public int Order { get; private set; }
public string Label { get; set; }
public string HelpText { get; set; }
public FieldType Type { get; set; }
}
public enum FieldType
{
Textbox,
Password,
Checkbox
}
}