Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.

Commit 5a3a3d5

Browse files
committed
Merge branch 'master' into 0.10.1
2 parents 276202d + e831531 commit 5a3a3d5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/PULL_REQUEST_TEMPLATE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Thank you for making a pull request ! Just a gentle reminder :)
22

3-
1. If the PR is offering a feature please make the request to our "Feature Branch" 0.10.0
4-
2. Bug fix request to "Bug Fix Branch" 0.10.0
3+
1. If the PR is offering a feature please make the request to our "Feature Branch" 0.11.0
4+
2. Bug fix request to "Bug Fix Branch" 0.10.1
55
3. Correct README.md can directly to master

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"start": "node node_modules/react-native/local-cli/cli.js start",
88
"update-info": "sh scripts/contributors.sh",
9-
"test": "sh test.sh"
9+
"test": "sh ./scrips/test.sh"
1010
},
1111
"devDependencies": {
1212
"body-parser": "^1.15.0",
@@ -32,4 +32,4 @@
3232
"smartt <github@eriksmartt.com>",
3333
""
3434
]
35-
}
35+
}

src/android/src/main/java/com/RNFetchBlob/RNFetchBlobBody.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ private File createMultipartBodyCache() throws IOException {
235235
}
236236
// data field
237237
else {
238-
header += "Content-Disposition: form-data; name=" + name + "\r\n";
238+
header += "Content-Disposition: form-data; name=\"" + name + "\"\r\n";
239239
header += "Content-Type: " + field.mime + "\r\n\r\n";
240240
os.write(header.getBytes());
241241
byte[] fieldData = field.data.getBytes();

0 commit comments

Comments
 (0)