From e5f41bca786f1637d1c3d35d5542b062c2372a44 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Mon, 31 Jul 2023 18:07:24 -0300 Subject: [PATCH] fix(all): Minor changes in PROD. --- packages/core.gbapp/services/GBMinService.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/core.gbapp/services/GBMinService.ts b/packages/core.gbapp/services/GBMinService.ts index 1a4ed1cc0..d79570bee 100644 --- a/packages/core.gbapp/services/GBMinService.ts +++ b/packages/core.gbapp/services/GBMinService.ts @@ -206,9 +206,11 @@ export class GBMinService { disconnected(remoteId: string, connections: number): void { }, connected(remoteId: string, connections: number): void { }, messageIn(...params): void { + params.shift(); GBLogEx.info(0, '[IN] ' + params); }, messageOut(...params): void { + params.shift(); GBLogEx.info(0, '[OUT] ' + params); } } @@ -1122,7 +1124,7 @@ export class GBMinService { private static async downloadAttachmentAndWrite(attachment) { const url = attachment.contentUrl; - const localFolder = Path.join('work'); + const localFolder = 'work'; const path = DialogKeywords.getGBAIPath(this['min'].botId); const localFileName = Path.join(localFolder, path, 'uploads', attachment.name