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/8cf5a4c1fd3b572c511553426fc67f9262284964/Old/Ombi.Core/IMovieSender.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/Old/Ombi.Core/IMovieSender.cs

10 lines
204 B

using System.Threading.Tasks;
using Ombi.Store;
namespace Ombi.Core
{
public interface IMovieSender
{
Task<MovieSenderResult> Send(RequestedModel model, string qualityId = "");
}
}