mirror of
https://github.com/wallabag/wallabag.git
synced 2025-06-07 07:58:48 +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'],
|
'html' => $entry['content'],
|
||||||
'content_type' => $entry['mimetype'],
|
'content_type' => $entry['mimetype'],
|
||||||
'is_archived' => (int) ($entry['is_archived'] || $this->markAsRead),
|
'is_archived' => (int) ($entry['is_archived'] || $this->markAsRead),
|
||||||
'is_starred' => false,
|
'is_starred' => (int) $entry['is_starred'],
|
||||||
] + $entry;
|
] + $entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue