From ba78ca282d92bf0b7b4f4048755813bfb33790c1 Mon Sep 17 00:00:00 2001 From: TidusJar Date: Thu, 12 May 2016 23:09:09 -0400 Subject: [PATCH] better handling for #202 --- PlexRequests.Api/PlexApi.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PlexRequests.Api/PlexApi.cs b/PlexRequests.Api/PlexApi.cs index 5367cb267..4ef2e9fe2 100644 --- a/PlexRequests.Api/PlexApi.cs +++ b/PlexRequests.Api/PlexApi.cs @@ -194,9 +194,9 @@ namespace PlexRequests.Api return (PlexLibraries)policy.Execute(() => api.ExecuteXml(request, plexFullHost)); } - catch (ApiRequestException) + catch (Exception e) { - Log.Error("There has been a API Exception when attempting to get the Plex Libraries"); + Log.Error(e,"There has been a API Exception when attempting to get the Plex Libraries"); return new PlexLibraries(); } } @@ -223,9 +223,9 @@ namespace PlexRequests.Api return (PlexSearch)policy.Execute(() => api.ExecuteXml(request, plexFullHost)); } - catch (ApiRequestException) + catch (Exception e) { - Log.Error("There has been a API Exception when attempting to get the Plex Library"); + Log.Error(e,"There has been a API Exception when attempting to get the Plex Library"); return new PlexSearch(); } }