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/e56a529b9c5c75fbdb921e5bb7cf6659732b9b8f/NzbDrone.Web/Models/EpisodeModel.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/NzbDrone.Web/Models/EpisodeModel.cs

18 lines
474 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace NzbDrone.Web.Models
{
public class EpisodeModel
{
public string Title { get; set; }
public int EpisodeId { get; set; }
public int EpisodeNumber { get; set; }
public int SeasonNumber { get; set; }
public string Overview { get; set; }
public string Path { get; set; }
public DateTime AirDate { get; set; }
}
}