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/87b2272bdf101e898cfee514ce7cd624b7991c0f/Ombi.Api.Models/Movie/CouchPotatoMovies.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/Ombi.Api.Models/Movie/CouchPotatoMovies.cs

13 lines
290 B

using System.Collections.Generic;
namespace Ombi.Api.Models.Movie
{
public class CouchPotatoMovies
{
public List<Movie> movies { get; set; }
public int total { get; set; }
public bool success { get; set; }
public bool empty { get; set; }
}
}