Skip to content

Commit

Permalink
fix(all): Minor changes in PROD.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Jul 31, 2023
1 parent 2c91e65 commit e5f41bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/core.gbapp/services/GBMinService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e5f41bc

Please sign in to comment.