From ab82beef33f4c196383a81213dcdff4ebe9447ae Mon Sep 17 00:00:00 2001 From: emkael Date: Fri, 2 Feb 2018 19:41:46 +0100 Subject: Adding RollingStone feed and acommodating for its quirks --- providers/Rss.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'providers') diff --git a/providers/Rss.php b/providers/Rss.php index cc0aaf8..d12bc98 100644 --- a/providers/Rss.php +++ b/providers/Rss.php @@ -37,13 +37,13 @@ class Rss extends \Providers\Provider { protected function _mapItems($content) { $items = []; foreach ($content as $contentString) { - $item = new \SimpleXMLElement($contentString); + $item = new \SimpleXMLElement(str_replace('content:encoded>', 'content>', $contentString)); $itemObject = new Item(); $itemObject->ID = strval($item->id ?: $item->guid); $itemObject->Title = strval($item->title); $itemObject->Time = strval($item->published ?: $item->pubDate); - $itemObject->Text = strval($item->summary ?: $item->description); - $itemObject->Link = strval(is_string($item->link) ? $item->link : $item->link->attributes()['href']); + $itemObject->Text = strval($item->summary ?: $item->description ?: $item->content); + $itemObject->Link = strval(isset($item->link['href']) ? $item->link->attributes()['href'] : $item->link); $itemObject->Author = strval(is_string($item->author) ? $item->author : $item->author->name); $items[] = $itemObject; } -- cgit v1.2.3