Browse Source

Updated for iOS

Not working in iPhone due to presence of charset utf-8
Gaurav 5 years ago
parent
commit
24abf39a47
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      ios/RNFetchBlobReqBuilder.m

+ 1
- 1
ios/RNFetchBlobReqBuilder.m View File

@@ -69,7 +69,7 @@
69 69
                 [mheaders setValue:[NSString stringWithFormat:@"%lu",[postData length]] forKey:@"Content-Length"];
70 70
                 [mheaders setValue:@"100-continue" forKey:@"Expect"];
71 71
                 // appaned boundary to content-type
72
-                [mheaders setValue:[NSString stringWithFormat:@"multipart/form-data; charset=utf-8; boundary=%@", boundary] forKey:@"content-type"];
72
+                [mheaders setValue:[NSString stringWithFormat:@"multipart/form-data; boundary=%@", boundary] forKey:@"content-type"];
73 73
                 [request setHTTPMethod: method];
74 74
                 [request setAllHTTPHeaderFields:mheaders];
75 75
                 onComplete(request, [formData length]);