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