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/e46b621a2ddc7e3374d867460cab7aa10e7421e2/Ombi.Services/Interfaces/IStoreBackup.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/Ombi.Services/Interfaces/IStoreBackup.cs

10 lines
170 B

using Quartz;
namespace Ombi.Services.Jobs
{
public interface IStoreBackup
{
void Start();
void Execute(IJobExecutionContext context);
}
}