Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/e82fad7428cc1e4d1cbdb34ccbb2225f85b9dfcc You should set ROOT_URL correctly, otherwise the web may not work correctly.

Trycatch around the availbility checker

pull/470/head
tidusjar 9 years ago
parent d7f01dcbb5
commit e82fad7428

@ -420,7 +420,14 @@ namespace PlexRequests.Services.Jobs
public void Execute(IJobExecutionContext context)
{
CheckAndUpdateAll();
try
{
CheckAndUpdateAll();
}
catch (Exception e)
{
Log.Error(e);
}
}
}
}
Loading…
Cancel
Save