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/367ca391b1017ef1ebdb8c005f76c420f4d6ac62/PlexRequests.UI/Models/ApiModel.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace PlexRequests.UI
|
|
|
|
|
{
|
|
|
|
|
public class ApiModel<T>
|
|
|
|
|
{
|
|
|
|
|
public T Data{ get; set; }
|
|
|
|
|
public bool Error{get;set;}
|
|
|
|
|
public string ErrorMessage{ get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|