Skip to content

Commit

Permalink
Invalid error response fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shefin committed Jul 7, 2018
1 parent 1451186 commit 54a16b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Podio .NET/Podio.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ internal async Task<T> Get<T>(string url, Dictionary<string, string> requestData
{
throw new PodioInvalidJsonException((int)response.StatusCode, new PodioError
{
Error = "Invalid json string",
Error = "Error response is not a valid Json string.",
ErrorDescription = ex.ToString(),
ErrorDetail = responseBody
});
Expand Down

0 comments on commit 54a16b6

Please sign in to comment.