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

af_redditimgur: also rewrite in the API handler

This commit is contained in:
Andrew Dolgov
2020-12-20 13:12:50 +03:00
parent b65e07a12b
commit 9e62513095

View File

@@ -23,6 +23,7 @@ class Af_RedditImgur extends Plugin {
$host->add_hook($host::HOOK_RENDER_ARTICLE, $this);
$host->add_hook($host::HOOK_RENDER_ARTICLE_CDM, $this);
$host->add_hook($host::HOOK_RENDER_ARTICLE_API, $this);
}
function hook_prefs_tab($args) {
@@ -636,4 +637,10 @@ class Af_RedditImgur extends Plugin {
return $article;
}
function hook_render_article_api($params) {
$article = isset($params["article"]) ? $params["article"] : $params["headline"];
return $this->hook_render_article_cdm($article);
}
}