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/cbb80714c96e484c7f7e4499d3c9849cf80f4df9/NzbDrone.Api/ClientSchema/Field.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Api/ClientSchema/Field.cs

11 lines
286 B

namespace NzbDrone.Api.ClientSchema
{
public class Field
{
public int Order { get; set; }
public string Name { get; set; }
public string Label { get; set; }
public string HelpText { get; set; }
public string Value { get; set; }
}
}