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/035434468e2d8b89bfa12fac601c9a4074a5d635/NzbDrone.Api/Seasons/SeasonResource.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Api/Seasons/SeasonResource.cs

13 lines
272 B

using System;
using NzbDrone.Api.REST;
namespace NzbDrone.Api.Seasons
{
public class SeasonResource : RestResource
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
public Boolean Monitored { get; set; }
}
}