diff --git a/README.md b/README.md
index 3c7d24a59..6b4cfc75b 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,15 @@
+## New Maintainers
+
+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.
+
+
+
+## About Pull Requests
+
+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`.
+
+
+
# react-native-fetch-blob
[](https://github.com/wkh237/react-native-fetch-blob/releases) [](https://www.npmjs.com/package/react-native-fetch-blob)  [](https://github.com/wkh237/react-native-fetch-blob/wiki) []()
@@ -18,9 +30,9 @@ A project committed to making file access and data transfer easier and more effi
* [Installation](#user-content-installation)
* [HTTP Data Transfer](#user-content-http-data-transfer)
* [Regular Request](#user-content-regular-request)
- * [Download file](#user-content-download-example--fetch-files-that-needs-authorization-token)
+ * [Download file](#download-example-fetch-files-that-need-authorization-token)
* [Upload file](#user-content-upload-example--dropbox-files-upload-api)
- * [Multipart/form upload](#user-content-multipartform-data-example--post-form-data-with-file-and-data)
+ * [Multipart/form upload](#multipartform-data-example-post-form-data-with-file-and-data)
* [Upload/Download progress](#user-content-uploaddownload-progress)
* [Cancel HTTP request](#user-content-cancel-request)
* [Android Media Scanner, and Download Manager Support](#user-content-android-media-scanner-and-download-manager-support)
@@ -636,7 +648,7 @@ RNFetchBlob.fs.readStream(
console.log('oops', err)
})
ifstream.onEnd(() => {
-
})
})
```
diff --git a/ios/RNFetchBlob/RNFetchBlob.m b/ios/RNFetchBlob/RNFetchBlob.m
index 246d6707c..794f6d39d 100644
--- a/ios/RNFetchBlob/RNFetchBlob.m
+++ b/ios/RNFetchBlob/RNFetchBlob.m
@@ -42,6 +42,10 @@ + (RCTBridge *)getRCTBridge
return rootView.bridge;
}
++ (BOOL)requiresMainQueueSetup {
+ return NO;
+}
+
RCT_EXPORT_MODULE();
- (id) init {