Selaa lähdekoodia

response typo

Eric 7 vuotta sitten
vanhempi
commit
3b0c7ad393
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2
    2
      polyfill/Fetch.js

+ 2
- 2
polyfill/Fetch.js Näytä tiedosto

73
               // release blob cache created when sending request
73
               // release blob cache created when sending request
74
               if(blobCache !== null && blobCache instanceof Blob)
74
               if(blobCache !== null && blobCache instanceof Blob)
75
                 blobCache.close()
75
                 blobCache.close()
76
-              return Promise.resolve(new RNFetchBlobFetchRepsonse(resp))
76
+              return Promise.resolve(new RNFetchBlobFetchResponse(resp))
77
             })
77
             })
78
           })
78
           })
79
 
79
 
97
 
97
 
98
 }
98
 }
99
 
99
 
100
-class RNFetchBlobFetchRepsonse {
100
+class RNFetchBlobFetchResponse {
101
 
101
 
102
   constructor(resp:FetchBlobResponse) {
102
   constructor(resp:FetchBlobResponse) {
103
     let info = resp.info()
103
     let info = resp.info()