fix bug
This commit is contained in:
parent
7f232292d5
commit
967d9fdfbb
|
@ -75,13 +75,13 @@
|
||||||
setOption('rpcHost', value);
|
setOption('rpcHost', value);
|
||||||
},
|
},
|
||||||
setRpcPort: function (value) {
|
setRpcPort: function (value) {
|
||||||
setOption('rpcPort', value);
|
setOption('rpcPort', Math.max(parseInt(value), 0));
|
||||||
},
|
},
|
||||||
getProtocol: function () {
|
getProtocol: function () {
|
||||||
return getOption('protocol');
|
return getOption('protocol');
|
||||||
},
|
},
|
||||||
setProtocol: function (value) {
|
setProtocol: function (value) {
|
||||||
setOption('protocol', Math.max(parseInt(value), 0));
|
setOption('protocol', value);
|
||||||
},
|
},
|
||||||
getGlobalStatRefreshInterval: function () {
|
getGlobalStatRefreshInterval: function () {
|
||||||
return getOption('globalStatRefreshInterval');
|
return getOption('globalStatRefreshInterval');
|
||||||
|
|
Reference in a new issue