aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle
diff options
context:
space:
mode:
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 }