]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fix status from Instapaper
authorJeremy Benoist <jeremy.benoist@gmail.com>
Sat, 19 Jan 2019 21:24:52 +0000 (22:24 +0100)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Sat, 19 Jan 2019 21:24:52 +0000 (22:24 +0100)
That status was used as `http_status` in ContentProxy->stockEntry

src/Wallabag/ImportBundle/Import/InstapaperImport.php

index 44c034f8bcb30262f7c320d72bf3165457bae820..439c978c71f02a6d4953cf25e7475b2a9a63582a 100644 (file)
@@ -79,7 +79,6 @@ class InstapaperImport extends AbstractImport
             $entries[] = [
                 'url' => $data[0],
                 'title' => $data[1],
-                'status' => $data[3],
                 'is_archived' => 'Archive' === $data[3] || 'Starred' === $data[3],
                 'is_starred' => 'Starred' === $data[3],
                 'html' => false,