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/83ee6427d880c42941b84475e9c281e195a9f926/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;
8 years ago
namespace Ombi.Services.Jobs
{
8 years ago
public interface IStoreBackup
{
8 years ago
void Start();
void Execute(IJobExecutionContext context);
}
}