1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-24 11:56:36 +02:00

Merge branch 'pluginhost_fix' of ggrandou/tt-rss into master

This commit is contained in:
fox 2018-12-09 01:34:48 +00:00 committed by Gogs
commit e338014d99

View File

@ -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);
}
}
};