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

12 lines
293 B

namespace Ombi.Services.Models
{
public class PlexMovie
{
public string Id { get; set; }
public string Title { get; set; }
public string ReleaseYear { get; set; }
public string ProviderId { get; set; }
public string Url { get; set; }
}
}