Skip to content

Commit

Permalink
Merge pull request #72 from amaurigabriel/master
Browse files Browse the repository at this point in the history
Fix error in feed parser
  • Loading branch information
ChrisRAoW authored Feb 24, 2023
2 parents f0963f7 + b7d07fc commit 9815800
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Parser/FeedParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ public function parseInfo($content)

switch ($tag) {
case 'title':
$value = $feed->get_title();
$value = $this->feed->get_title();
break;
case 'url':
$value = $feed->feed_url;
$value = $this->feed->feed_url;
break;
case 'description':
$value = $feed->get_description();
$value = $this->feed->get_description();
break;
}

Expand Down

0 comments on commit 9815800

Please sign in to comment.