Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/578808ecd39a9dc4cf6bae3bfb3d3b2ffb764e70/NzbDrone.Core/SeriesStats/SeriesStatistics.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System;
|
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.SeriesStats
|
|
|
|
|
{
|
|
|
|
|
public class SeriesStatistics : ResultSet
|
|
|
|
|
{
|
|
|
|
|
public int SeriesId { get; set; }
|
|
|
|
|
public string NextAiringString { get; set; }
|
|
|
|
|
public int EpisodeFileCount { get; set; }
|
|
|
|
|
public int EpisodeCount { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime? NextAiring
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
DateTime nextAiring;
|
|
|
|
|
|
|
|
|
|
if (!DateTime.TryParse(NextAiringString, out nextAiring)) return null;
|
|
|
|
|
|
|
|
|
|
return nextAiring;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|