From 4317d341c69dac0b8de19f35b414b1d439137c6a Mon Sep 17 00:00:00 2001 From: cha0s Date: Mon, 24 Dec 2018 13:20:20 -0600 Subject: [PATCH] fix: actually return result --- services/gateway/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/gateway/actions.js b/services/gateway/actions.js index 664eaaa..9c49e92 100644 --- a/services/gateway/actions.js +++ b/services/gateway/actions.js @@ -19,7 +19,7 @@ module.exports = (serviceMap) => ({ function invokeHookFlat(services, hook, args) { debug(`invoking hookFlat(${hook}(${JSON.stringify(args, null, ' ')}))...`); - invokeHookFlatInternal(services, hook, args); + return invokeHookFlatInternal(services, hook, args); } function invokeHookFlatInternal(services, hook, args) {