Skip to content

Commit

Permalink
fix(basic.gblib): fix dynamic parameter generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanPerdomo committed Mar 31, 2023
1 parent f288987 commit 11b0ea2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@
"botbuilder-ai": "4.18.0",
"botbuilder-dialogs": "4.18.0",
"botframework-connector": "4.18.0",
"botlib": "3.0.9",
"botlib": "3.0.11",
"c3-chart-maker": "0.2.8",
"cd": "^0.3.3",
"cd": "0.3.3",
"chatgpt": "2.4.2",
"chrome-remote-interface": "0.31.3",
"cli-progress": "3.11.2",
Expand Down Expand Up @@ -123,7 +123,7 @@
"lodash": "4.17.21",
"luxon": "3.1.0",
"mammoth": "1.5.1",
"mime-types": "^2.1.35",
"mime-types": "2.1.35",
"moment": "1.3.0",
"ms-rest-azure": "3.0.0",
"nexmo": "2.9.1",
Expand All @@ -144,7 +144,7 @@
"prism-media": "1.3.4",
"public-ip": "6.0.1",
"punycode": "2.1.1",
"puppeteer": "^19.8.0",
"puppeteer": "19.8.0",
"puppeteer-extra": "3.3.4",
"puppeteer-extra-plugin-minmax": "1.1.2",
"puppeteer-extra-plugin-stealth": "2.11.1",
Expand Down
3 changes: 3 additions & 0 deletions packages/basic.gblib/services/KeywordsExpressions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ export class KeywordsExpressions {
if (accum.isConcatting) {
accum.soFar[accum.soFar.length - 1] += ',' + curr;
} else {
if(curr===""){
curr = null;
}
accum.soFar.push(curr);
}
if (curr.split('"').length % 2 == 0) {
Expand Down

0 comments on commit 11b0ea2

Please sign in to comment.