aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-02-20 09:45:12 +0100
committerGitHub <noreply@github.com>2017-02-20 09:45:12 +0100
commit6914fdd8d8f7045f9334ddb70a3fa4c794291eb3 (patch)
treebebdebcff2d3d4ae0c82bafd04194f091d09db76 /src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php
parent48be826ea981188c882694ca3e488d0fcaac79d3 (diff)
parentb45b6b6707de9e4518d99c58b0a0bf7d886971b7 (diff)
downloadwallabag-6914fdd8d8f7045f9334ddb70a3fa4c794291eb3.tar.gz
wallabag-6914fdd8d8f7045f9334ddb70a3fa4c794291eb3.tar.zst
wallabag-6914fdd8d8f7045f9334ddb70a3fa4c794291eb3.zip
Merge pull request #2915 from wallabag/import-drop-msg-user-null
Import: we now skip messages when user is null
Diffstat (limited to 'src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php')
-rw-r--r--src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php b/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php
index fc175f67..992ce1ad 100644
--- a/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php
+++ b/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php
@@ -46,7 +46,8 @@ abstract class AbstractConsumer
46 if (null === $user) { 46 if (null === $user) {
47 $this->logger->warning('Unable to retrieve user', ['entry' => $storedEntry]); 47 $this->logger->warning('Unable to retrieve user', ['entry' => $storedEntry]);
48 48
49 return false; 49 // return true to skip message
50 return true;
50 } 51 }
51 52
52 $this->import->setUser($user); 53 $this->import->setUser($user);