Browse Source

Merge branch 'release/5.0.0' into develop

Chocobozzz 1 year ago
parent
commit
3a380e9a71
1 changed files with 7 additions and 2 deletions
  1. 7 2
      client/src/root-helpers/plugins-manager.ts

+ 7 - 2
client/src/root-helpers/plugins-manager.ts

@@ -108,11 +108,16 @@ class PluginsManager {
     }
   }
 
-  async runHook<T> (hookName: ClientHookName, result?: T, params?: any) {
-    if (!this.hooks[hookName]) return result
+  async runHook<T> (hookName: ClientHookName, resultArg?: T | Promise<T>, params?: any) {
+    if (!this.hooks[hookName]) {
+      // eslint-disable-next-line no-return-await
+      return await resultArg
+    }
 
     const hookType = getHookType(hookName)
 
+    let result = await resultArg
+
     for (const hook of this.hooks[hookName]) {
       logger.info(`Running hook ${hookName} of plugin ${hook.plugin.name}`)