aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-08-18 11:58:35 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-08-18 14:27:17 +0200
commit519ba0b5e71cd9b5abd620f682fd2296e6180af3 (patch)
tree2b036c251c8d95cc78dae5676394e076f9e919e1 /src/Wallabag/ImportBundle
parente408d7e895e784271a55c3a200666034db0af80a (diff)
downloadwallabag-519ba0b5e71cd9b5abd620f682fd2296e6180af3.tar.gz
wallabag-519ba0b5e71cd9b5abd620f682fd2296e6180af3.tar.zst
wallabag-519ba0b5e71cd9b5abd620f682fd2296e6180af3.zip
Replaced favorite word/icon with star one
Fix #2041
Diffstat (limited to 'src/Wallabag/ImportBundle')
-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 29361a32..19b63f17 100644
--- a/src/Wallabag/ImportBundle/Import/PocketImport.php
+++ b/src/Wallabag/ImportBundle/Import/PocketImport.php
@@ -226,7 +226,7 @@ class PocketImport implements ImportInterface
226 $entry->setArchived(true); 226 $entry->setArchived(true);
227 } 227 }
228 228
229 // 0 or 1 - 1 If the item is favorited 229 // 0 or 1 - 1 If the item is starred
230 if ($pocketEntry['favorite'] == 1) { 230 if ($pocketEntry['favorite'] == 1) {
231 $entry->setStarred(true); 231 $entry->setStarred(true);
232 } 232 }