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