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 ddd77a0 + 6ced4b8 commit 026e34fCopy full SHA for 026e34f
src/main/java/com/ning/http/multipart/MultipartBody.java
@@ -377,7 +377,7 @@ private FilePart generateClientFilePart(com.ning.http.client.Part part)
377
private StringPart generateClientStringpart(com.ning.http.client.Part part) {
378
com.ning.http.client.StringPart stringPart = (com.ning.http.client.StringPart) part;
379
380
- StringPart currentPart = new StringPart(stringPart.getName(), stringPart.getValue());
+ StringPart currentPart = new StringPart(stringPart.getName(), stringPart.getValue(), stringPart.getCharset());
381
return currentPart;
382
}
383
0 commit comments