Skip to content

Commit 614ef56

Browse files
authored
Merge pull request #17 from alzalabany/patch-2
compatible with RN > 0.49
2 parents 0410466 + 2599ae4 commit 614ef56

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## New Maintainers
2+
3+
We make quite a bit of use of react-native-fetch-blob at Jolt and would like to maintain the project. Feel free to open issues, PRs, etc. here as you would on the original repository. We will be investigating a new npm namespace under which to publish future versions of this library.
4+
5+
<br>
6+
7+
## About Pull Requests
8+
9+
Bugfixes should be applied to the `0.10.9` branch and new features should be applied to the `0.11.0`. Documentation/README updates can be applied directly to `master`.
10+
11+
<br>
12+
113
# react-native-fetch-blob
214
[![release](https://img.shields.io/github/release/wkh237/react-native-fetch-blob.svg?style=flat-square)](https://github.com/wkh237/react-native-fetch-blob/releases) [![npm](https://img.shields.io/npm/v/react-native-fetch-blob.svg?style=flat-square)](https://www.npmjs.com/package/react-native-fetch-blob) ![](https://img.shields.io/badge/PR-Welcome-brightgreen.svg?style=flat-square) [![](https://img.shields.io/badge/Wiki-Public-brightgreen.svg?style=flat-square)](https://github.com/wkh237/react-native-fetch-blob/wiki) [![npm](https://img.shields.io/npm/l/react-native-fetch-blob.svg?maxAge=2592000&style=flat-square)]()
315

@@ -18,9 +30,9 @@ A project committed to making file access and data transfer easier and more effi
1830
* [Installation](#user-content-installation)
1931
* [HTTP Data Transfer](#user-content-http-data-transfer)
2032
* [Regular Request](#user-content-regular-request)
21-
* [Download file](#user-content-download-example--fetch-files-that-needs-authorization-token)
33+
* [Download file](#download-example-fetch-files-that-need-authorization-token)
2234
* [Upload file](#user-content-upload-example--dropbox-files-upload-api)
23-
* [Multipart/form upload](#user-content-multipartform-data-example--post-form-data-with-file-and-data)
35+
* [Multipart/form upload](#multipartform-data-example-post-form-data-with-file-and-data)
2436
* [Upload/Download progress](#user-content-uploaddownload-progress)
2537
* [Cancel HTTP request](#user-content-cancel-request)
2638
* [Android Media Scanner, and Download Manager Support](#user-content-android-media-scanner-and-download-manager-support)
@@ -638,7 +650,7 @@ RNFetchBlob.fs.readStream(
638650
console.log('oops', err)
639651
})
640652
ifstream.onEnd(() => {
641-
<Image source={{ uri : 'data:image/png,base64' + data }}
653+
<Image source={{ uri : 'data:image/png,base64' + data }}/>
642654
})
643655
})
644656
```

ios/RNFetchBlob/RNFetchBlob.m

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ + (RCTBridge *)getRCTBridge
4242
return rootView.bridge;
4343
}
4444

45+
+ (BOOL)requiresMainQueueSetup {
46+
return NO;
47+
}
48+
4549
RCT_EXPORT_MODULE();
4650

4751
- (id) init {

0 commit comments

Comments
 (0)