diff --git a/src/main/wrapper/ExecutionService.ts b/src/main/wrapper/ExecutionService.ts index 26d3592d..5218ad1b 100644 --- a/src/main/wrapper/ExecutionService.ts +++ b/src/main/wrapper/ExecutionService.ts @@ -59,7 +59,7 @@ function transform(n:string) { } let r = ""; - if(n) r = n.replace(/"'/g, "").replace("/[, ]/g",","); + if(n) r = n.replace(/["']/g, "").replace("/[, ]/g",","); return r; }