1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-23 11:46:37 +02:00

get_article_image: add support for ARTICLE_KIND_ALBUM

This commit is contained in:
Andrew Dolgov 2020-12-08 13:54:45 +03:00
parent 0e4e0e624e
commit 2edfcbbd85

View File

@ -770,9 +770,13 @@ class Article extends Handler_Protected {
}
}
if ($article_image)
if ($article_image) {
$article_image = rewrite_relative_url($site_url, $article_image);
if (!$article_kind && (count($enclosures) > 1 || $elems->length > 1))
$article_kind = ARTICLE_KIND_ALBUM;
}
if ($article_stream)
$article_stream = rewrite_relative_url($site_url, $article_stream);
}