Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
shukriadams committed May 18, 2021
1 parent 808d84c commit 9c741f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ for (const name in _settings.watchers){
watcher.recipients = watcher.recipients || '*'
// convert string list to array
if (watcher.recipients !== '*')
watcher.recipients = watcher.recipients.spit(',').filter(w => !!w)
watcher.recipients = watcher.recipients.split(',').filter(w => !!w)

// force default values based on logic
if (!watcher.cmd && !watcher.test)
Expand Down

0 comments on commit 9c741f1

Please sign in to comment.