Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/a163e511ae700b5392e30798fd2f28c7e2a5cdaf/NzbDrone.Api/Qualities/QualityProfileResource.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Api/Qualities/QualityProfileResource.cs

20 lines
537 B

using System;
using System.Collections.Generic;
using NzbDrone.Api.REST;
namespace NzbDrone.Api.Qualities
{
public class QualityProfileResource : RestResource
{
public String Name { get; set; }
public QualityResource Cutoff { get; set; }
public List<QualityResource> Available { get; set; }
public List<QualityResource> Allowed { get; set; }
}
public class QualityResource : RestResource
{
public Int32 Weight { get; set; }
public String Name { get; set; }
}
}