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

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

View file

@ -52,7 +52,7 @@ export class KeywordsExpressions {
} }
accum.soFar.push(curr); accum.soFar.push(curr);
} }
if (curr.split('"').length % 2 == 0) { if (curr.split('`').length % 2 == 0) {
accum.isConcatting = !accum.isConcatting; accum.isConcatting = !accum.isConcatting;
} }
return accum; return accum;