Skip to content

Commit

Permalink
Merge pull request #218 from arunsivasankaran/bug/plugin-runner
Browse files Browse the repository at this point in the history
fix: Fix typo in lib/pluginRunner that causes passed pluginOptions to…
  • Loading branch information
evantahler authored Oct 3, 2017
2 parents 48775bd + 75db3fd commit 67933b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pluginRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var runPlugin = function (self, PluginRefrence, type, func, queue, job, args, ca
callback(null, true)
} else {
var pluginName = PluginRefrence
if (typeof pluginRefrence === 'function') {
if (typeof PluginRefrence === 'function') {
pluginName = new PluginRefrence(self, func, queue, job, args, {}).name
}

Expand Down

0 comments on commit 67933b2

Please sign in to comment.