We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f9a176 commit dcd3aaaCopy full SHA for dcd3aaa
android/src/main/java/com/RNFetchBlob/RNFetchBlobBody.java
@@ -68,7 +68,7 @@ RNFetchBlobBody setBody(String body) {
68
try {
69
switch (requestType) {
70
case SingleFile:
71
- requestStream = getReuqestStream();
+ requestStream = getRequestStream();
72
contentLength = requestStream.available();
73
break;
74
case AsIs:
@@ -135,7 +135,7 @@ boolean clearRequestBody() {
135
return true;
136
}
137
138
- private InputStream getReuqestStream() throws Exception {
+ private InputStream getRequestStream() throws Exception {
139
140
// upload from storage
141
if (rawBody.startsWith(RNFetchBlobConst.FILE_PREFIX)) {
0 commit comments