diff --git a/packages/core.gbapp/services/GBCoreService.ts b/packages/core.gbapp/services/GBCoreService.ts index c473d2213..4230dbcf3 100644 --- a/packages/core.gbapp/services/GBCoreService.ts +++ b/packages/core.gbapp/services/GBCoreService.ts @@ -700,14 +700,14 @@ await fs.writeFile('.env', env); let isEdit = false; // Loop through column A to find the row where name matches, or find the next empty row - for (let i = 1; i <= rows.length; i++) { + for (let i = 7; i <= rows.length; i++) { let result = rows[i - 1][0]; if (result && result.toLowerCase() === name.toLowerCase()) { address = `B${i}:B${i}`; // Match found, update value in column B isEdit = true; // We are in editing mode break; } else if (!result && lastEmptyRow === -1) { - lastEmptyRow = i; // Store the first empty row if no match is found + lastEmptyRow = i ; // Store the first empty row if no match is found } } diff --git a/src/app.ts b/src/app.ts index d0daea0a8..6b302d262 100644 --- a/src/app.ts +++ b/src/app.ts @@ -283,15 +283,17 @@ export class GBServer { } else { // Setups unsecure http redirect. const proxy = httpProxy.createProxyServer({}); - GBLogEx.verbose(0, `Redirecting... ${req.originalUrl}`); if (host === process.env.API_HOST) { + GBLogEx.info(0, `Redirecting to API...`); return proxy.web(req, res, { target: 'http://localhost:1111' }); // Express server } else if (host === process.env.ROUTER_1) { - return proxy.web(req, res, { target: `http://localhost:${process.env.ROUTER_1_PORT}` }); + GBLogEx.info(0, `Redirecting...`); + return proxy.web(req, res, { target: `http://localhost:${process.env.ROUTER_1_PORT}` }); // Express server } else if (host === process.env.ROUTER_2) { - return proxy.web(req, res, { target: `http://localhost:${process.env.ROUTER_2_PORT}` }); + GBLogEx.info(0, `Redirecting...`); + return proxy.web(req, res, { target: `http://localhost:${process.env.ROUTER_2_PORT}` }); // Express server } else { await GBSSR.ssrFilter(req, res, next); }