Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/blame/commit/47e2385eaadbcbe1de7e606126e6177b4ea32b02/Ombi.Services/Models/PlexTvShow.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/Ombi.Services/Models/PlexTvShow.cs

14 lines
380 B

8 years ago
namespace Ombi.Services.Models
{
public class PlexTvShow
{
public string Id { get; set; }
public string Title { get; set; }
public string ReleaseYear { get; set; }
public string ProviderId { get; set; }
public int[] Seasons { get; set; }
9 years ago
public string Url { get; set; }
8 years ago
public string ItemId { get; set; }
}
}