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/dd8f8493e115f00607d0a90a1fbaa4f18ec62190/Old/Ombi.Services/Jobs/IEmbyUserChecker.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/Old/Ombi.Services/Jobs/IEmbyUserChecker.cs

10 lines
174 B

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