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

12 lines
258 B

8 years ago
using Ombi.Core.SettingModels;
using Quartz;
namespace Ombi.Services.Jobs
{
public interface IPlexEpisodeCacher
{
void CacheEpisodes(PlexSettings settings);
void Execute(IJobExecutionContext context);
void Start();
}
}