mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-02 08:56:53 +01:00
add check
This commit is contained in:
parent
0cd0d6eb8c
commit
bc2b947cd5
@ -126,9 +126,13 @@ class WallabagRestController extends FOSRestController
|
||||
$this->get('wallabag_core.content_proxy')->assignTagsToEntry($entry, $tags);
|
||||
}
|
||||
|
||||
$entry->setStarred((bool) $isStarred);
|
||||
if (!is_null($isStarred)) {
|
||||
$entry->setStarred((bool) $isStarred);
|
||||
}
|
||||
|
||||
$entry->setArchived((bool) $isArchived);
|
||||
if (!is_null($isArchived)) {
|
||||
$entry->setArchived((bool) $isArchived);
|
||||
}
|
||||
|
||||
$em = $this->getDoctrine()->getManager();
|
||||
$em->persist($entry);
|
||||
|
Loading…
x
Reference in New Issue
Block a user