This should help #202

This commit is contained in:
TidusJar 2016-05-12 16:09:09 -04:00
commit f9205fc027

View file

@ -130,9 +130,10 @@ namespace PlexRequests.Api
{ {
return Api.Execute<CouchPotatoMovies>(request, baseUrl); return Api.Execute<CouchPotatoMovies>(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("Error when attempting to GetMovies.");
Log.Error (e);
return new CouchPotatoMovies(); return new CouchPotatoMovies();
} }
} }