Fixed typo in Content-Type request

This commit is contained in:
PolyacovYury 2018-06-02 15:55:48 +03:00
parent 76a9c23122
commit 8a8feb5b2d

View file

@ -63,7 +63,7 @@ public class ThreadMultipartPostUpload {
this.httpClient.addRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)"); // For CloudFlare
if (this.sourceData.size() > 0) {
this.httpClient.setRequestProperty("Content-Type", "multipart/form-data, boundary=" + boundary);
this.httpClient.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary);
}
if (this.authorization != null) {