From c3ce293671425343bfd14f224d3c0f0de46f48bf Mon Sep 17 00:00:00 2001 From: mikeTWC1984 <31977106+mikeTWC1984@users.noreply.github.com> Date: Sat, 13 Feb 2021 22:29:01 -0500 Subject: [PATCH] event args - rm semicolon --- lib/job.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;