summaryrefslogtreecommitdiffstats
path: root/utility
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-17 10:50:46 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-17 10:51:04 +0200
commit1fbcd35ac8f868e48228aafa375c5a305554a3c3 (patch)
treef3b40fa3e34f90774097bf78ceffc7f4527fa05b /utility
parent19b9456b6a96e8139d62a498fb31a96ed36fb442 (diff)
always return the unreadcount when marking read to set update request as 0, dont create new feeds that only consist of unreadcount updates
Diffstat (limited to 'utility')
-rw-r--r--utility/feedfetcher.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/utility/feedfetcher.php b/utility/feedfetcher.php
index f48839029..9dc13bde9 100644
--- a/utility/feedfetcher.php
+++ b/utility/feedfetcher.php
@@ -177,12 +177,13 @@ class FeedFetcher implements IFeedFetcher {
// remove //
$favicon = ltrim($favicon, '/');
+ $httpsFavicon = $favicon;
// if it does not start with http, add it
if (strpos($favicon, 'http') !== 0){
$favicon = 'http://' . $favicon;
$httpsFavicon = 'https://' . $favicon;
- }
+ }
// if its already valid, return it
if ($this->isValidFavIcon($favicon)){