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

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