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

Commit d8a6ea3

Browse files
committed
Merge branch 'master' into 0.9.2
2 parents 1a20024 + 9f9f65b commit d8a6ea3

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ A project committed to make file acess and data transfer easier, efficient for R
3838

3939
## About
4040

41-
This project was initially for solving the issue [facebook/react-native#854](https://github.com/facebook/react-native/issues/854), because React Native lack of `Blob` implementation and it will cause some problem when transfering binary data. Now, this project is committed to make file access and transfer more easier, efficient for React Native developers. We've implemented highly customizable filesystem and network module which plays well together. For example, upload and download data directly from/to storage which is much more efficient in some cases(especially for large ones). The file system supports file stream, so you don't have to worry about OOM problem when accessing large files.
41+
This project was initially for solving the issue [facebook/react-native#854](https://github.com/facebook/react-native/issues/854), because React Native lack of `Blob` implementation and it will cause some problem when transferring binary data. Now, this project is committed to make file access and transfer more easier, efficient for React Native developers. We've implemented highly customizable filesystem and network module which plays well together. For example, upload and download data directly from/to storage which is much more efficient in some cases(especially for large ones). The file system supports file stream, so you don't have to worry about OOM problem when accessing large files.
4242

43-
In `0.8.0` we introduced experimential Web API polyfills that make it possible to use browser-based libraries in React Native, for example, [FireBase JS SDK](https://github.com/wkh237/rn-firebase-storage-upload-sample)
43+
In `0.8.0` we introduced experimental Web API polyfills that make it possible to use browser-based libraries in React Native, such as, [FireBase JS SDK](https://github.com/wkh237/rn-firebase-storage-upload-sample)
4444

4545

4646
## Installation

Diff for: src/android/src/main/java/com/RNFetchBlob/RNFetchBlobBody.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,12 @@ public long contentLength() {
102102
public MediaType contentType() {
103103
return mime;
104104
}
105-
105+
106+
@Override
107+
public long contentLength() {
108+
return contentLength;
109+
}
110+
106111
@Override
107112
public void writeTo(BufferedSink sink) {
108113
try {

0 commit comments

Comments
 (0)