1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:25:57 +00:00

HOOK_ARTICLE_IMAGE: stop after first provided match

This commit is contained in:
Andrew Dolgov
2021-03-07 14:19:00 +03:00
parent 518e677a6b
commit 72c04123d4

View File

@@ -550,8 +550,11 @@ class Article extends Handler_Protected {
$article_kind = 0;
PluginHost::getInstance()->chain_hooks_callback(PluginHost::HOOK_ARTICLE_IMAGE,
function ($result) use (&$article_image, &$article_stream, &$content) {
function ($result, $plugin) use (&$article_image, &$article_stream, &$content) {
list ($article_image, $article_stream, $content) = $result;
// run until first hard match
return !empty($article_image);
},
$enclosures, $content, $site_url, $headline);