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/91cc65bae22095081308dae3ff0cfc0490301094/NzbDrone.Tvdb.Offline/NzbDrone.Tvdb.Offline/Series.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

31 lines
639 B

using System;
namespace NzbDrone.Tvdb.Offline
{
public class Series
{
public virtual int SeriesId { get; set; }
public string Title { get; set; }
public string CleanTitle { get; set; }
public string Status { get; set; }
public Boolean? Active { get; set; }
public string Overview { get; set; }
public string AirsDayOfWeek { get; set; }
public int? WeekDay { get; set; }
public String AirTimes { get; set; }
public int? RateCount { get; set; }
public decimal? Rating { get; set; }
public String Path { get; set; }
}
}