forked from wallabag/wallabag
Fixed imports with is_starred and is_archived
This commit is contained in:
@ -39,7 +39,8 @@ class ChromeImport extends BrowserImport
|
||||
'title' => $entry['name'],
|
||||
'html' => false,
|
||||
'url' => $entry['url'],
|
||||
'is_archived' => $this->markAsRead,
|
||||
'is_archived' => (int) $this->markAsRead,
|
||||
'is_starred' => false,
|
||||
'tags' => '',
|
||||
'created_at' => substr($entry['date_added'], 0, 10),
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user