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/7417f76086e9df5da4bca1f7303a204668c23710/NzbDrone.Api/REST/RestResource.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Api/REST/RestResource.cs

19 lines
422 B

using Newtonsoft.Json;
namespace NzbDrone.Api.REST
{
public abstract class RestResource
{
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
public int Id { get; set; }
[JsonIgnore]
public virtual string ResourceName
{
get
{
return GetType().Name.ToLower().Replace("resource", "");
}
}
}
}