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
1 changed files with 7 additions and 0 deletions

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