aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/PocketImport.php
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-08-21 22:11:20 +0200
committerGitHub <noreply@github.com>2016-08-21 22:11:20 +0200
commit4e4e8e9899c39b31f2c977c796f8b6e6b4f727f3 (patch)
treec1873414141cf72ca7c14ac3e526f153948099fa /src/Wallabag/ImportBundle/Import/PocketImport.php
parent8642f14220a834a434225d812e2ea07680b04cb2 (diff)
parenteecd7e406d46bc34af9aeefa19370df657d2a4fd (diff)
downloadwallabag-4e4e8e9899c39b31f2c977c796f8b6e6b4f727f3.tar.gz
wallabag-4e4e8e9899c39b31f2c977c796f8b6e6b4f727f3.tar.zst
wallabag-4e4e8e9899c39b31f2c977c796f8b6e6b4f727f3.zip
Merge pull request #2221 from wallabag/replace-favorite-star
Replaced favorite word/icon with star one
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/PocketImport.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/PocketImport.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Import/PocketImport.php b/src/Wallabag/ImportBundle/Import/PocketImport.php
index 678d016a..798cfdae 100644
--- a/src/Wallabag/ImportBundle/Import/PocketImport.php
+++ b/src/Wallabag/ImportBundle/Import/PocketImport.php
@@ -223,7 +223,7 @@ class PocketImport extends AbstractImport
223 $entry->setArchived(true); 223 $entry->setArchived(true);
224 } 224 }
225 225
226 // 0 or 1 - 1 If the item is favorited 226 // 0 or 1 - 1 If the item is starred
227 if ($pocketEntry['favorite'] == 1) { 227 if ($pocketEntry['favorite'] == 1) {
228 $entry->setStarred(true); 228 $entry->setStarred(true);
229 } 229 }