[FeedExpander] Fix Serialization of 'SimpleXMLElement' is not allowed

This commit is contained in:
logmanoriginal 2017-08-10 13:35:17 +02:00
parent 8166e33e7f
commit 4fb1366aaf
1 changed files with 2 additions and 2 deletions

View File

@ -102,12 +102,12 @@ abstract class FeedExpander extends BridgeAbstract {
if(!isset($content->link)) {
$this->uri = '';
} elseif (count($content->link) === 1) {
$this->uri = $content->link[0]['href'];
$this->uri = (string)$content->link[0]['href'];
} else {
$this->uri = '';
foreach($content->link as $link) {
if(strtolower($link['rel']) === 'alternate') {
$this->uri = $link['href'];
$this->uri = (string)$link['href'];
break;
}
}