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

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