summaryrefslogtreecommitdiffstats
path: root/lib/Command
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2021-02-11 07:56:31 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2021-02-16 11:01:10 +0100
commit6cd83ea1da4d24d439a5f30bfc13349f0c25e597 (patch)
treed112b6adc95d0648c6b7ac221bac0998f4e5fdf7 /lib/Command
parentc09b4d8d3341780022dfdd3edbe5352a1d4a4abd (diff)
remove unused lastModified from feed fetcher
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'lib/Command')
-rw-r--r--lib/Command/ShowFeed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Command/ShowFeed.php b/lib/Command/ShowFeed.php
index 180c6ca3a..7408ed191 100644
--- a/lib/Command/ShowFeed.php
+++ b/lib/Command/ShowFeed.php
@@ -70,7 +70,7 @@ class ShowFeed extends Command
$fullTextEnabled = (bool) $input->getOption('full-text');
try {
- list($feed, $items) = $this->feedFetcher->fetch($url, null, $fullTextEnabled, $user, $password);
+ list($feed, $items) = $this->feedFetcher->fetch($url, $fullTextEnabled, $user, $password);
} catch (\Exception $ex) {
$output->writeln('<error>Failed to fetch feed info:</error>');
$output->writeln($ex->getMessage());