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/c7f8f57f77a9fdfd2910fbc31ff04b6861e76325/NzbDrone.Web/Models/QualityModel.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Web/Models/QualityModel.cs

25 lines
808 B

using System.Collections.Generic;
using System.ComponentModel;
using System.Web.Mvc;
using NzbDrone.Core.Repository.Quality;
namespace NzbDrone.Web.Models
{
public class QualityModel
{
public List<QualityProfileModel> Profiles { get; set; }
[DisplayName("Default Quality Profile")]
[Description("The default quality to use when adding series to NzbDrone")]
public int DefaultQualityProfileId { get; set; }
public SelectList QualityProfileSelectList { get; set; }
public int SdtvMaxSize { get; set; }
public int DvdMaxSize { get; set; }
public int HdtvMaxSize { get; set; }
public int WebdlMaxSize { get; set; }
public int Bluray720pMaxSize { get; set; }
public int Bluray1080pMaxSize { get; set; }
}
}