Open
Description
There's an error at https://github.com/joltup/rn-fetch-blob#self-signed-ssl-server
RNFetchBlob.config({
trusty : true
})
.then('GET', 'https://mysite.com') // wrong line
.then((resp) => {
// ...
})
should be
RNFetchBlob.config({
trusty : true
})
.fetch('GET', 'https://mysite.com')
.then((resp) => {
// ...
})