diff options
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/ImportBundle/Command/ImportCommand.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Wallabag/ImportBundle/Command/ImportCommand.php b/src/Wallabag/ImportBundle/Command/ImportCommand.php index f62176fc..a4aa8531 100644 --- a/src/Wallabag/ImportBundle/Command/ImportCommand.php +++ b/src/Wallabag/ImportBundle/Command/ImportCommand.php | |||
@@ -18,7 +18,7 @@ class ImportCommand extends ContainerAwareCommand | |||
18 | ->addArgument('userId', InputArgument::REQUIRED, 'User ID to populate') | 18 | ->addArgument('userId', InputArgument::REQUIRED, 'User ID to populate') |
19 | ->addArgument('filepath', InputArgument::REQUIRED, 'Path to the JSON file') | 19 | ->addArgument('filepath', InputArgument::REQUIRED, 'Path to the JSON file') |
20 | ->addOption('importer', null, InputArgument::OPTIONAL, 'The importer to use: v1 or v2', 'v1') | 20 | ->addOption('importer', null, InputArgument::OPTIONAL, 'The importer to use: v1 or v2', 'v1') |
21 | ->addOption('markAsRead', null, InputArgument::OPTIONAL, 'Mark all entries as read: true/false', false) | 21 | ->addOption('markAsRead', null, InputArgument::OPTIONAL, 'Mark all entries as read', false) |
22 | ; | 22 | ; |
23 | } | 23 | } |
24 | 24 | ||
@@ -42,9 +42,7 @@ class ImportCommand extends ContainerAwareCommand | |||
42 | $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v2.import'); | 42 | $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v2.import'); |
43 | } | 43 | } |
44 | 44 | ||
45 | if ('yes' === $input->getOption('markAsRead')) { | 45 | $wallabag->setMarkAsRead($input->getOption('markAsRead')); |
46 | $wallabag->setMarkAsRead(true); | ||
47 | } | ||
48 | 46 | ||
49 | $res = $wallabag | 47 | $res = $wallabag |
50 | ->setUser($user) | 48 | ->setUser($user) |