2
2
zrcadlo https://git.coolaj86.com/coolaj86/telebit.js.git synchronizováno 2025-07-01 17:26:31 +00:00
Tento commit je obsažen v:
AJ ONeal 2018-06-13 11:44:23 -06:00
rodič f70deb7f9d
revize 788acbb7e9
2 změnil soubory, kde provedl 3 přidání a 3 odebrání

Zobrazit soubor

@ -306,7 +306,7 @@ function askForConfig(answers, mainCb) {
function next() {
var q = nextSet.shift();
if (!q) {
if (useTty) { stdin.end(); stdin.close(); }
if (useTty) { stdin.close(); }
rl.close(); mainCb(null, answers);
return;
}

Zobrazit soubor

@ -153,12 +153,12 @@ function serveControls() {
if ('undefined' !== typeof conf.telemetry) {
state.config.telemetry = conf.telemetry;
}
conf.servernames.forEach(function (key) {
Object.keys(conf.servernames).forEach(function (key) {
if (!state.config.servernames[key]) {
state.config.servernames[key] = {};
}
});
conf.ports.forEach(function (key) {
Object.keys(conf.ports).forEach(function (key) {
if (!state.config.ports[key]) {
state.config.ports[key] = {};
}