From 8d7b7cb95646c7058543cc42c6b47fbfd43ed0d1 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Thu, 22 Feb 2024 08:23:45 -0300 Subject: [PATCH] new(basic.gblib): REPORT AND RESET REPORT new keywords @othonlima --- packages/basic.gblib/services/SystemKeywords.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/basic.gblib/services/SystemKeywords.ts b/packages/basic.gblib/services/SystemKeywords.ts index 6b151f34..22c8cbfe 100644 --- a/packages/basic.gblib/services/SystemKeywords.ts +++ b/packages/basic.gblib/services/SystemKeywords.ts @@ -843,6 +843,11 @@ export class SystemKeywords { * */ public async save({ pid, file, args }): Promise { + + if (!args){ + return; + } + const { min } = await DialogKeywords.getProcessInfo(pid); GBLog.info(`BASIC: Saving '${file}' (SAVE). Args: ${args.join(',')}.`); let { baseUrl, client } = await GBDeployer.internalGetDriveClient(min);