We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba0063e commit f4c27b7Copy full SHA for f4c27b7
lib/index.ts
@@ -63,7 +63,7 @@ export const getAllLiveGateway = async (
63
const fullfilled: string[] = [];
64
65
for (let index = 1; index < result.length; index++) {
66
- if (result[index].status === 'fulfilled') {
+ if (result[index - 1].status === 'fulfilled') {
67
fullfilled.push(finalUrl[index]);
68
}
69
package.json
@@ -2,7 +2,7 @@
2
"name": "public-ipfs-gateway",
3
"description": "Get Public IPFS gateway url easily",
4
"author": "codev911",
5
- "version": "1.1.4",
+ "version": "1.1.5",
6
"main": "./dist/index.js",
7
"module": "./dist/index.mjs",
8
"types": "./dist/index.d.ts",
0 commit comments