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

Commit 0b46750

Browse files
lidelAlan Shaw
authored and
Alan Shaw
committed
fix: pin.ls ignored opts when hash was present (#875)
Solves problem described in ipfs/ipfs-companion#360 (comment) License: MIT Signed-off-by: Marcin Rataj <lidel@lidel.org>
1 parent 9eaaea3 commit 0b46750

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/pin/ls.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,12 @@ module.exports = (send) => {
1212
}
1313
if (typeof opts === 'function') {
1414
callback = opts
15+
opts = null
1516
}
1617
if (hash && hash.type) {
1718
opts = hash
1819
hash = null
19-
} else {
20-
opts = null
2120
}
22-
2321
send({
2422
path: 'pin/ls',
2523
args: hash,

0 commit comments

Comments
 (0)