Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/fded4cf7f3e11e9b6f818728c18841c3a12765af/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", "");
}
}
}
}