mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-11-22 12:52:50 +03:00
fix internal arg passing
This commit is contained in:
parent
ca39635bcd
commit
e7e9532255
@ -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 + ')');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user