Skip to content

Commit

Permalink
Merge pull request #670 from kittinunf/iNoles-patch-1
Browse files Browse the repository at this point in the history
Fixed HTTPClient Response Message
  • Loading branch information
iNoles authored Aug 10, 2019
2 parents 781be0f + 7d5f906 commit 3786703
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class HttpClient(
headers = headers,
contentLength = contentLength ?: -1,
statusCode = connection.responseCode,
responseMessage = connection.responseMessage,
responseMessage = connection.responseMessage.orEmpty(),
body = DefaultBody.from(
{ progressStream.buffered(FuelManager.progressBufferSize) },
{ contentLength ?: -1 }
Expand Down

0 comments on commit 3786703

Please sign in to comment.