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

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

View file

@ -1096,9 +1096,9 @@ export class KeywordsExpressions {
];
keywords[i++] = [
/^\s*(MERGE)(\s*)(.*)/gim,
/^\s*MERGE\s*(.*)/gim,
($0, $1, $2, $3) => {
return `await img.mergeImage({pid: pid, files: [${$3}]})`;
return `await img.mergeImage({pid: pid, files: [${$2}]})`;
}
];