removing restriction that caused hook system to go weird when arrays were

passed in as args
This commit is contained in:
Julian Lam
2013-10-12 13:30:43 -04:00
parent 13d8f51f6a
commit 7f32d5741d

View File

@@ -155,8 +155,7 @@ var fs = require('fs'),
var hookType = hook.split(':')[0];
switch (hookType) {
case 'filter':
// Filters only take one argument, so only args[0] will be passed in
var returnVal = (Array.isArray(args) ? args[0] : args);
var returnVal = args;
async.eachSeries(hookList, function(hookObj, next) {
if (hookObj[2]) {
@@ -197,7 +196,7 @@ var fs = require('fs'),
}
} else {
// Otherwise, this hook contains no methods
var returnVal = (Array.isArray(args) ? args[0] : args);
var returnVal = args;
if (callback) callback(null, returnVal);
}
},