fix internal arg passing

This commit is contained in:
Ryan Blenis 2019-12-26 10:45:14 -05:00
parent 5dda176e07
commit ca163ea218
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ module.exports.pluginHandler = function (parent) {
for (var p in obj.plugins) {
if (typeof obj.plugins[p][hookName] == 'function') {
try {
obj.plugins[p][hookName](args);
obj.plugins[p][hookName](...args);
} catch (e) {
console.log("Error ocurred while running plugin hook" + p + ':' + hookName + ' (' + e + ')');
}