We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c40ade9 + c1dfa29 commit baca1fcCopy full SHA for baca1fc
src/com/loopj/android/http/AsyncHttpResponseHandler.java
@@ -211,7 +211,7 @@ void sendResponseMessage(HttpResponse response) {
211
HttpEntity temp = response.getEntity();
212
if(temp != null) {
213
entity = new BufferedHttpEntity(temp);
214
- responseBody = EntityUtils.toString(entity);
+ responseBody = EntityUtils.toString(entity, "UTF-8");
215
}
216
} catch(IOException e) {
217
sendFailureMessage(e, null);
0 commit comments