소스 검색

Updated for iOS

Not working in iPhone due to presence of charset utf-8
Gaurav 5 년 전
부모
커밋
24abf39a47
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      ios/RNFetchBlobReqBuilder.m

+ 1
- 1
ios/RNFetchBlobReqBuilder.m 파일 보기

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