From e82fad7428cc1e4d1cbdb34ccbb2225f85b9dfcc Mon Sep 17 00:00:00 2001 From: tidusjar Date: Wed, 6 Jul 2016 08:53:32 +0100 Subject: [PATCH] Trycatch around the availbility checker --- PlexRequests.Services/Jobs/PlexAvailabilityChecker.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/PlexRequests.Services/Jobs/PlexAvailabilityChecker.cs b/PlexRequests.Services/Jobs/PlexAvailabilityChecker.cs index dfadadd80..6f026aed4 100644 --- a/PlexRequests.Services/Jobs/PlexAvailabilityChecker.cs +++ b/PlexRequests.Services/Jobs/PlexAvailabilityChecker.cs @@ -420,7 +420,14 @@ namespace PlexRequests.Services.Jobs public void Execute(IJobExecutionContext context) { - CheckAndUpdateAll(); + try + { + CheckAndUpdateAll(); + } + catch (Exception e) + { + Log.Error(e); + } } } } \ No newline at end of file