Преглед изворни кода

Merge pull request #127 from thalelinh/master

Fixed trusty example calling `then` instead of `fetch`
Travis Nuttall пре 5 година
родитељ
комит
1663c7b579
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
 })