mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 19:11:07 +00:00
Fixed is_starred for wallabag v2 import
This commit is contained in:
parent
35941d57ee
commit
4c707d087b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue