summaryrefslogtreecommitdiffstats
path: root/utility
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-27 14:00:52 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-27 14:00:52 +0200
commitcd2488ee421c5f4d09ddc7ef6484409659aa17c8 (patch)
tree0fa59db4bc76145c4fa76d8a8bb198aa8df35358 /utility
parent95ead2f0dacda070751e22ba4bcdc6127e3c0d3d (diff)
prefer web favicon over feed favicon, fix #101
Diffstat (limited to 'utility')
-rw-r--r--utility/feedfetcher.php15
1 files changed, 7 insertions, 8 deletions
diff --git a/utility/feedfetcher.php b/utility/feedfetcher.php
index e97373836..3d4a5099c 100644
--- a/utility/feedfetcher.php
+++ b/utility/feedfetcher.php
@@ -159,15 +159,14 @@ class FeedFetcher implements IFeedFetcher {
$feed->setUrlHash(md5($url));
$feed->setAdded($this->time->getTime());
- // get the favicon from the feed or the webpage
- $favicon = $simplePieFeed->get_image_url();
-
- if ($favicon) {
- $feed->setFaviconLink($favicon);
- } else {
- $webFavicon = $this->faviconFetcher->fetch($feed->getLink());
- $feed->setFaviconLink($webFavicon);
+ // use the favicon from the page first since most feeds use a weird image
+ $favicon = $this->faviconFetcher->fetch($feed->getLink());
+
+ if (!$favicon) {
+ $favicon = $simplePieFeed->get_image_url();
}
+
+ $feed->setFaviconLink($favicon);
return $feed;
}