aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/ReadabilityImport.php
diff options
context:
space:
mode:
authorJerome Charaoui <jerome@riseup.net>2016-12-02 22:42:36 -0500
committerJerome Charaoui <jerome@riseup.net>2016-12-02 22:42:36 -0500
commit36e6ef52a176ef654eade931a23f60fd91344f2f (patch)
tree05a859396e95e51287aa6180d3a21d81600c7014 /src/Wallabag/ImportBundle/Import/ReadabilityImport.php
parent29dca43236001221be947179df0caa8aee966f6d (diff)
downloadwallabag-36e6ef52a176ef654eade931a23f60fd91344f2f.tar.gz
wallabag-36e6ef52a176ef654eade931a23f60fd91344f2f.tar.zst
wallabag-36e6ef52a176ef654eade931a23f60fd91344f2f.zip
Imported entries which fail to fetch get standard error body
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/ReadabilityImport.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/ReadabilityImport.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Wallabag/ImportBundle/Import/ReadabilityImport.php b/src/Wallabag/ImportBundle/Import/ReadabilityImport.php
index b8c0f777..66b00885 100644
--- a/src/Wallabag/ImportBundle/Import/ReadabilityImport.php
+++ b/src/Wallabag/ImportBundle/Import/ReadabilityImport.php
@@ -103,6 +103,7 @@ class ReadabilityImport extends AbstractImport
103 'is_archived' => $importedEntry['archive'] || $this->markAsRead, 103 'is_archived' => $importedEntry['archive'] || $this->markAsRead,
104 'is_starred' => $importedEntry['favorite'], 104 'is_starred' => $importedEntry['favorite'],
105 'created_at' => $importedEntry['date_added'], 105 'created_at' => $importedEntry['date_added'],
106 'html' => false,
106 ]; 107 ];
107 108
108 $entry = new Entry($this->user); 109 $entry = new Entry($this->user);