mirror of
https://git.coolaj86.com/coolaj86/telebit.js.git
synced 2025-03-03 15:10:45 +00:00
merge ssh defaults bugfix from master
This commit is contained in:
commit
20ed109aeb
@ -289,12 +289,16 @@ controllers.ssh = function (req, res, opts) {
|
||||
function sshSuccess() {
|
||||
//state.config.sshAuto = state.sshAuto;
|
||||
saveConfig(function (err) {
|
||||
var local = state.config.sshAuto;
|
||||
if (false !== local && !local) {
|
||||
local = 22;
|
||||
}
|
||||
res.setHeader('Content-Type', 'application/json');
|
||||
res.end(JSON.stringify({
|
||||
success: true
|
||||
, active: true
|
||||
, remote: Object.keys(state.config.ports)[0]
|
||||
, local: state.config.sshAuto || 22
|
||||
, local: local
|
||||
, saved: !err
|
||||
, module: 'ssh'
|
||||
}));
|
||||
|
Loading…
x
Reference in New Issue
Block a user