add check

This commit is contained in:
Thomas Citharel 2016-03-16 22:47:12 +01:00
parent 0cd0d6eb8c
commit bc2b947cd5
1 changed files with 6 additions and 2 deletions

View File

@ -126,9 +126,13 @@ class WallabagRestController extends FOSRestController
$this->get('wallabag_core.content_proxy')->assignTagsToEntry($entry, $tags);
}
if (!is_null($isStarred)) {
$entry->setStarred((bool) $isStarred);
}
if (!is_null($isArchived)) {
$entry->setArchived((bool) $isArchived);
}
$em = $this->getDoctrine()->getManager();
$em->persist($entry);