1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-07-31 05:40:24 +02:00

[FeedExpander] Deal with empty item

This commit is contained in:
Frans de Jonge
2017-06-11 12:58:53 +02:00
parent d5f47efcea
commit 781e4f1908

View File

@@ -48,7 +48,10 @@ abstract class FeedExpander extends BridgeAbstract {
$this->load_RSS_2_0_feed_data($rssContent->channel[0]);
foreach($rssContent->item as $item){
debugMessage('parsing item ' . var_export($item, true));
$this->items[] = $this->parseItem($item);
$tmp_item = $this->parseItem($item);
if (!empty($tmp_item)) {
$this->items[] = $tmp_item;
}
if($maxItems !== -1 && count($this->items) >= $maxItems) break;
}
}
@@ -62,7 +65,10 @@ abstract class FeedExpander extends BridgeAbstract {
$this->load_RSS_2_0_feed_data($rssContent);
foreach($rssContent->item as $item){
debugMessage('parsing item ' . var_export($item, true));
$this->items[] = $this->parseItem($item);
$tmp_item = $this->parseItem($item);
if (!empty($tmp_item)) {
$this->items[] = $tmp_item;
}
if($maxItems !== -1 && count($this->items) >= $maxItems) break;
}
}
@@ -71,7 +77,10 @@ abstract class FeedExpander extends BridgeAbstract {
$this->load_ATOM_feed_data($content);
foreach($content->entry as $item){
debugMessage('parsing item ' . var_export($item, true));
$this->items[] = $this->parseItem($item);
$tmp_item = $this->parseItem($item);
if (!empty($tmp_item)) {
$this->items[] = $tmp_item;
}
if($maxItems !== -1 && count($this->items) >= $maxItems) break;
}
}