diff --git a/lib/job.js b/lib/job.js index c35b92f..c74b579 100644 --- a/lib/job.js +++ b/lib/job.js @@ -241,7 +241,7 @@ module.exports = Class.create({ if (job.args) { job.args.split(",") .map(e => e.trim()) - .filter(e => e.match(/^[\w\.\@\-\,\;\s]+$/g)) + .filter(e => e.match(/^[\w\.\@\-\s]+$/g)) .slice(0, 9) .forEach((e, i) => { xparams[`ARG${i + 1}`] = e;