fix(basic.gblib): SET PAGED keyword #377.

This commit is contained in:
Rodrigo Rodriguez 2023-10-26 07:52:57 -03:00
parent 488ef9d0f8
commit d18ae6c511
2 changed files with 3 additions and 2 deletions

View file

@ -354,7 +354,7 @@ export class KeywordsExpressions {
__seekToken = __data.links?.self?.headers["MS-ContinuationToken"]
__totalCount = __data["totalCount"] ? __data["totalCount"] : __data.length;
while (__next)
while (__next && __totalCount)
{
let ${$1} = __data?.items ? __data?.items[__index] : __data[__index];
`;

View file

@ -1445,6 +1445,7 @@ export class SystemKeywords {
*
*/
public async convert({ pid, src, dest }) {
const { min, user, params } = await DialogKeywords.getProcessInfo(pid);
GBLog.info(`BASIC: CONVERT '${src}' to '${dest}'`);
let { baseUrl, client } = await GBDeployer.internalGetDriveClient(min);
@ -1523,7 +1524,7 @@ export class SystemKeywords {
res[extraKey + key] = obj[key];
}
else{
GBLog.info(`Ignoring duplicated field in flatten operation to storage: ${key}.`);
GBLog.verbose(`Ignoring duplicated field in flatten operation to storage: ${key}.`);
}
} else {