소스 검색

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

Tales Lelo da Aparecida 5 년 전
부모
커밋
1a315a302e
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      README.md

+ 1
- 1
README.md 파일 보기

@@ -790,7 +790,7 @@ By default, rn-fetch-blob does NOT allow connection to unknown certification pro
790 790
 RNFetchBlob.config({
791 791
   trusty : true
792 792
 })
793
-.then('GET', 'https://mysite.com')
793
+.fetch('GET', 'https://mysite.com')
794 794
 .then((resp) => {
795 795
   // ...
796 796
 })