fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit 1bf2f01f8f - Show all commits

View file

@ -2346,7 +2346,7 @@ export class SystemKeywords {
let value = row[p];
if (typeof (value) === 'string') {
value = value.substr(0, fieldsSizes[j]-1);
value = value.substring(0, fieldsSizes[j]-1);
}
fieldsValues.push(value);