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 256a9c7 commit ba0063eCopy full SHA for ba0063e
lib/index.ts
@@ -62,7 +62,7 @@ export const getAllLiveGateway = async (
62
const result = await Promise.allSettled(listLoop);
63
const fullfilled: string[] = [];
64
65
- for (let index = 0; index < result.length; index++) {
+ for (let index = 1; index < result.length; index++) {
66
if (result[index].status === 'fulfilled') {
67
fullfilled.push(finalUrl[index]);
68
}
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.3",
+ "version": "1.1.4",
6
"main": "./dist/index.js",
7
"module": "./dist/index.mjs",
8
"types": "./dist/index.d.ts",
0 commit comments