mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 21:25:55 +00:00
Changed how the enclosures array is checked for content so an empty array is not processed. Fixes a change from the previous branch commit.
This commit is contained in:
@@ -1856,7 +1856,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($rv === '' && is_array($result)) {
|
if ($rv === '' && !empty($result)) {
|
||||||
$entries_html = array();
|
$entries_html = array();
|
||||||
$entries = array();
|
$entries = array();
|
||||||
$entries_inline = array();
|
$entries_inline = array();
|
||||||
|
|||||||
Reference in New Issue
Block a user