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.
1 parent f0cbfd4 commit bc77ef9Copy full SHA for bc77ef9
library/src/com/lidroid/xutils/http/client/multipart/MultipartEntity.java
@@ -144,10 +144,10 @@ protected String generateContentType(
144
StringBuilder buffer = new StringBuilder();
145
buffer.append("multipart/" + multipartSubtype + "; boundary=");
146
buffer.append(boundary);
147
- if (charset != null) {
+ /*if (charset != null) {
148
buffer.append("; charset=");
149
buffer.append(charset.name());
150
- }
+ }*/
151
return buffer.toString();
152
}
153
0 commit comments