Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/f86cb87ced82c61061f52507a5364f1d4d81932e/NzbDrone.Core/Tv/SeriesStatistics.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/NzbDrone.Core/Tv/SeriesStatistics.cs

14 lines
332 B

using System;
namespace NzbDrone.Core.Tv
{
public class SeriesStatistics
{
public int SeriesId { get; set; }
public int NumberOfSeasons { get; set; }
public DateTime? NextAiring { get; set; }
public int EpisodeFileCount { get; set; }
public int EpisodeCount { get; set; }
}
}