Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/1ba74e0eeafe80a14ae8d5ab5e81d2811b04fadc/NzbDrone.Web/Models/HistoryModel.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Web/Models/HistoryModel.cs

20 lines
624 B

using System;
using NzbDrone.Core.Model;
namespace NzbDrone.Web.Models
{
public class HistoryModel
{
public int HistoryId { get; set; }
public string SeriesTitle { get; set; }
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
public string EpisodeTitle { get; set; }
public string EpisodeOverview { get; set; }
public string NzbTitle { get; set; }
public string Quality { get; set; }
public DateTime Date { get; set; }
public bool IsProper { get; set; }
public string Indexer { get; set; }
}
}