summaryrefslogtreecommitdiffstats
path: root/utility
diff options
context:
space:
mode:
Diffstat (limited to 'utility')
-rw-r--r--utility/fetcher.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/utility/fetcher.php b/utility/fetcher.php
index c834de5e4..8c3bc03e9 100644
--- a/utility/fetcher.php
+++ b/utility/fetcher.php
@@ -40,10 +40,10 @@ class Fetcher {
}
- public function fetch($url){
+ public function fetch($url, $getFavicon=true){
foreach($this->fetchers as $fetcher){
if($fetcher->canHandle($url)){
- return $fetcher->fetch($url);
+ return $fetcher->fetch($url, $getFavicon);
}
}
}