Trycatch around the availbility checker

This commit is contained in:
tidusjar 2016-07-06 08:53:32 +01:00
parent d7f01dcbb5
commit e82fad7428

View file

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