Ver código fonte

Fixed trusty example calling `then` instead of `fetch`

Tales Lelo da Aparecida 7 anos atrás
pai
commit
1a315a302e
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      README.md

+ 1
- 1
README.md Ver arquivo

790
 RNFetchBlob.config({
790
 RNFetchBlob.config({
791
   trusty : true
791
   trusty : true
792
 })
792
 })
793
-.then('GET', 'https://mysite.com')
793
+.fetch('GET', 'https://mysite.com')
794
 .then((resp) => {
794
 .then((resp) => {
795
   // ...
795
   // ...
796
 })
796
 })