Skip to content

Commit

Permalink
This should help #202
Browse files Browse the repository at this point in the history
  • Loading branch information
TidusJar committed May 12, 2016
1 parent c7e3409 commit f9205fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion PlexRequests.Api/CouchPotatoApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,10 @@ public CouchPotatoMovies GetMovies(Uri baseUrl, string apiKey, string[] status)
{
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 (e);
return new CouchPotatoMovies();
}
}
Expand Down

0 comments on commit f9205fc

Please sign in to comment.