Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 2f3763f

Browse files
author
Alan Shaw
authored
fix: pin ls with multiple CIDs (#1184)
Fixes `pin.ls` with multiple CIDs, which was inadvertently unsupported since it wasn't documented but was being tested for in js-ipfs CLI tests. ipfs-inactive/interface-js-ipfs-core#563 adds a test and documents the feature.
1 parent cb39a69 commit 2f3763f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"cross-env": "^6.0.0",
8585
"detect-node": "^2.0.4",
8686
"go-ipfs-dep": "^0.4.22",
87-
"interface-ipfs-core": "^0.122.0",
87+
"interface-ipfs-core": "^0.123.0",
8888
"ipfsd-ctl": "^0.47.1",
8989
"ndjson": "^1.5.0",
9090
"nock": "^11.4.0",

src/pin/ls.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ module.exports = configure(({ ky }) => {
99
path = null
1010
}
1111

12+
path = path || []
13+
path = Array.isArray(path) ? path : [path]
1214
options = options || {}
1315

1416
const searchParams = new URLSearchParams(options.searchParams)
15-
if (path) searchParams.set('arg', `${path}`)
17+
path.forEach(p => searchParams.append('arg', `${p}`))
1618
if (options.type) searchParams.set('type', options.type)
1719

1820
const { Keys } = await ky.post('pin/ls', {

0 commit comments

Comments
 (0)