fix(core.gbapp): SaaS missing in PROD.

This commit is contained in:
me@rodrigorodriguez.com 2024-09-26 13:58:24 -03:00
parent 6eb08cf798
commit f847c09c89

View file

@ -467,7 +467,11 @@ export class GBDeployer implements IGBDeployer {
} }
await asyncPromise.eachSeries(rows, async (line: any) => { await asyncPromise.eachSeries(rows, async (line: any) => {
if (line && line.length > 0) { if (line && line.length > 0) {
obj[line[1]] = line[2]; const key = line[1]?.trim();
const value = line[2]?.trim();
if (key && value) {
obj[key] = value;
}
} }
}); });