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/3e7ef408ee1d9c8c5923d0b54899aca3f3542dcd/NzbDrone.Api/Qualities/QualityProfileResource.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/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; }
}
12 years ago
}