summaryrefslogtreecommitdiffstats
path: root/lib/Command/Config/FeedAdd.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-09-29 16:14:53 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-09-29 21:15:53 +0200
commite5283611412d4b3305ee7d549da00ca24c0e35df (patch)
tree78fffed11636a39f871935a7fa6d811e0ac26000 /lib/Command/Config/FeedAdd.php
parentf13c5039d15ba384c655e1901f3bfec31a43a18f (diff)
Add feed autodiscovery
Issue GH-415 Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'lib/Command/Config/FeedAdd.php')
-rw-r--r--lib/Command/Config/FeedAdd.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Command/Config/FeedAdd.php b/lib/Command/Config/FeedAdd.php
index d21f448c0..35bac6480 100644
--- a/lib/Command/Config/FeedAdd.php
+++ b/lib/Command/Config/FeedAdd.php
@@ -63,7 +63,7 @@ class FeedAdd extends Command
$password = $input->getOption('password');
$feed = $this->feedService->create($user, $url, $folder, $full_text, $title, $username, $password);
- $this->feedService->fetch($feed, true);
+ $this->feedService->fetch($feed);
$output->writeln(json_encode($feed->toAPI(), JSON_PRETTY_PRINT));