Bugfix for there being no registrations for a hook at all
This commit is contained in:
parent
30b018833c
commit
441fd2f8eb
@ -18,12 +18,14 @@ exports.flatten = function (lst) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
exports.callAll = function (hook_name, args) {
|
exports.callAll = function (hook_name, args) {
|
||||||
|
if (plugins.hooks[hook_name] === undefined) return [];
|
||||||
return exports.flatten(plugins.hooks[hook_name].map(function (hook) {
|
return exports.flatten(plugins.hooks[hook_name].map(function (hook) {
|
||||||
return hook.hook(hook_name, args, function (x) { return x; });
|
return hook.hook(hook_name, args, function (x) { return x; });
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.aCallAll = function (hook_name, args, cb) {
|
exports.aCallAll = function (hook_name, args, cb) {
|
||||||
|
if (plugins.hooks[hook_name] === undefined) cb([]);
|
||||||
async.map(
|
async.map(
|
||||||
plugins.hooks[hook_name],
|
plugins.hooks[hook_name],
|
||||||
function (hook, cb) {
|
function (hook, cb) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user