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

Commit 4f21bef

Browse files
author
Alan Shaw
authored
fix: config set with number (#998)
Anything that isn't a string needs to be passed with `--json`. fixes #881 Depends on: * [x] ipfs-inactive/interface-js-ipfs-core#470 License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 7a47e3b commit 4f21bef

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"dirty-chai": "^2.0.1",
8686
"eslint-plugin-react": "^7.11.1",
8787
"go-ipfs-dep": "0.4.19",
88-
"interface-ipfs-core": "~0.100.1",
88+
"interface-ipfs-core": "~0.101.0",
8989
"ipfsd-ctl": "~0.42.0",
9090
"nock": "^10.0.2",
9191
"stream-equal": "^1.1.1"

src/config/set.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@ module.exports = (send) => {
1616
return callback(new Error('Invalid value type'))
1717
}
1818

19-
if (typeof value === 'object') {
20-
value = JSON.stringify(value)
21-
opts = { json: true }
22-
}
23-
2419
if (typeof value === 'boolean') {
2520
value = value.toString()
2621
opts = { bool: true }
22+
} else if (typeof value !== 'string') {
23+
value = JSON.stringify(value)
24+
opts = { json: true }
2725
}
2826

2927
send({

0 commit comments

Comments
 (0)