Ver código fonte

Updated for iOS

Not working in iPhone due to presence of charset utf-8
Gaurav 5 anos atrás
pai
commit
24abf39a47
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      ios/RNFetchBlobReqBuilder.m

+ 1
- 1
ios/RNFetchBlobReqBuilder.m Ver arquivo

@@ -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]);