mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-05 05:25:49 +01:00
maintain old behaviour
This commit is contained in:
@@ -230,8 +230,11 @@ function hookHandlerPromise(hook, hookObj, params) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hook.startsWith('filter:') && returned) {
|
if (hook.startsWith('filter:') && returned !== undefined) {
|
||||||
_resolve(returned);
|
_resolve(returned);
|
||||||
|
} else if (hook.startsWith('static:') && hookObj.method.length <= 1) {
|
||||||
|
// make sure it is resolved if static hook doesn't return anything and doesn't use callback
|
||||||
|
_resolve();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user