aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2019-01-19 22:24:52 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2019-01-19 22:24:52 +0100
commit2491c50b6bbb4d51696ad64aa754c1cd0fc83d1b (patch)
treefbf3829ae47e440818c4dfe948cd344fb62ac154
parent50f35f0db2be9586205e793f315608eec59c9666 (diff)
downloadwallabag-2491c50b6bbb4d51696ad64aa754c1cd0fc83d1b.tar.gz
wallabag-2491c50b6bbb4d51696ad64aa754c1cd0fc83d1b.tar.zst
wallabag-2491c50b6bbb4d51696ad64aa754c1cd0fc83d1b.zip
Fix status from Instapaper
That status was used as `http_status` in ContentProxy->stockEntry
-rw-r--r--src/Wallabag/ImportBundle/Import/InstapaperImport.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Import/InstapaperImport.php b/src/Wallabag/ImportBundle/Import/InstapaperImport.php
index 44c034f8..439c978c 100644
--- a/src/Wallabag/ImportBundle/Import/InstapaperImport.php
+++ b/src/Wallabag/ImportBundle/Import/InstapaperImport.php
@@ -79,7 +79,6 @@ class InstapaperImport extends AbstractImport
79 $entries[] = [ 79 $entries[] = [
80 'url' => $data[0], 80 'url' => $data[0],
81 'title' => $data[1], 81 'title' => $data[1],
82 'status' => $data[3],
83 'is_archived' => 'Archive' === $data[3] || 'Starred' === $data[3], 82 'is_archived' => 'Archive' === $data[3] || 'Starred' === $data[3],
84 'is_starred' => 'Starred' === $data[3], 83 'is_starred' => 'Starred' === $data[3],
85 'html' => false, 84 'html' => false,