From f9205fc02733598e767f5285ee11bcdd415feb0b Mon Sep 17 00:00:00 2001 From: TidusJar Date: Thu, 12 May 2016 16:09:09 -0400 Subject: [PATCH] This should help #202 --- PlexRequests.Api/CouchPotatoApi.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PlexRequests.Api/CouchPotatoApi.cs b/PlexRequests.Api/CouchPotatoApi.cs index 9db43a409..96d245cf9 100644 --- a/PlexRequests.Api/CouchPotatoApi.cs +++ b/PlexRequests.Api/CouchPotatoApi.cs @@ -130,9 +130,10 @@ namespace PlexRequests.Api { return Api.Execute(request, baseUrl); } - catch (ApiRequestException) // Request error is already logged in the ApiRequest class + catch (Exception e) // Request error is already logged in the ApiRequest class { Log.Error("Error when attempting to GetMovies."); + Log.Error (e); return new CouchPotatoMovies(); } }