Skip to content

Commit

Permalink
event args - rm semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeTWC1984 authored Feb 14, 2021
1 parent 24944cf commit c3ce293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/job.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c3ce293

Please sign in to comment.