summaryrefslogtreecommitdiffstats
path: root/lib/Fetcher/IFeedFetcher.php
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2021-02-11 09:15:49 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2021-02-16 10:16:15 +0100
commitc09b4d8d3341780022dfdd3edbe5352a1d4a4abd (patch)
tree80c40089cd12b138a0c2db5027f1362baed5786e /lib/Fetcher/IFeedFetcher.php
parent961c56177a1cd56c1d5292d3246345ab31fb4f86 (diff)
prefer the feeds logo over the favicon
The logo of the feed is prefered if it is a square picture, else the favicon is returned. Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> Co-authored-by: Sean Molenaar <SMillerDev@users.noreply.github.com>
Diffstat (limited to 'lib/Fetcher/IFeedFetcher.php')
-rw-r--r--lib/Fetcher/IFeedFetcher.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Fetcher/IFeedFetcher.php b/lib/Fetcher/IFeedFetcher.php
index ff9a89903..abb367889 100644
--- a/lib/Fetcher/IFeedFetcher.php
+++ b/lib/Fetcher/IFeedFetcher.php
@@ -24,7 +24,6 @@ interface IFeedFetcher
* Fetch feed content.
*
* @param string $url remote url of the feed
- * @param boolean $favicon if the favicon should also be fetched, defaults to true
* @param string|null $lastModified a last modified value from an http header defaults to false.
* If lastModified matches the http header from the feed no results are fetched
* @param bool $fullTextEnabled If true use a scraper to download the full article
@@ -38,7 +37,6 @@ interface IFeedFetcher
*/
public function fetch(
string $url,
- bool $favicon,
?string $lastModified,
bool $fullTextEnabled,
?string $user,