summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorfox <[email protected]>2018-12-09 01:34:48 +0000
committerGogs <[email protected]>2018-12-09 01:34:48 +0000
commite338014d991dca5d512b975094da59c05db6f64e (patch)
tree3cc500453ae81ee0a5062f5400b6688015a7c6f3 /js
parent4743da4638347bdeafa0eb44c86148d129547970 (diff)
parent392ad0bd83c0da588419c247eb311e82887b2905 (diff)
Merge branch 'pluginhost_fix' of ggrandou/tt-rss into master
Diffstat (limited to 'js')
-rw-r--r--js/PluginHost.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/js/PluginHost.js b/js/PluginHost.js
index 7c2a975e0..f76b73464 100644
--- a/js/PluginHost.js
+++ b/js/PluginHost.js
@@ -24,8 +24,9 @@ PluginHost = {
//console.warn('PluginHost::run ' + name);
if (typeof(this.hooks[name]) != 'undefined')
- for (let i = 0; i < this.hooks[name].length; i++)
- if (!this.hooks[name][i](args)) break;
+ for (let i = 0; i < this.hooks[name].length; i++) {
+ this.hooks[name][i](args);
+ }
}
};