Fixed is_starred for wallabag v2 import

This commit is contained in:
Nicolas Lœuillet 2017-05-23 17:07:26 +02:00
parent 35941d57ee
commit 4c707d087b

View file

@ -37,7 +37,7 @@ class WallabagV2Import extends WallabagImport
'html' => $entry['content'],
'content_type' => $entry['mimetype'],
'is_archived' => (int) ($entry['is_archived'] || $this->markAsRead),
'is_starred' => false,
'is_starred' => (int) $entry['is_starred'],
] + $entry;
}