diff options
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/ApiBundle/Controller/EntryRestController.php | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/EntryRestController.php b/src/Wallabag/ApiBundle/Controller/EntryRestController.php index c544815e..54c1747c 100644 --- a/src/Wallabag/ApiBundle/Controller/EntryRestController.php +++ b/src/Wallabag/ApiBundle/Controller/EntryRestController.php | |||
@@ -200,10 +200,19 @@ class EntryRestController extends WallabagRestController | |||
200 | $entry = $this->get('wallabag_core.entry_repository')->findByUrlAndUserId($url, $this->getUser()->getId()); | 200 | $entry = $this->get('wallabag_core.entry_repository')->findByUrlAndUserId($url, $this->getUser()->getId()); |
201 | 201 | ||
202 | if (false === $entry) { | 202 | if (false === $entry) { |
203 | $entry = $this->get('wallabag_core.content_proxy')->updateEntry( | 203 | $entry = new Entry($this->getUser()); |
204 | new Entry($this->getUser()), | 204 | try { |
205 | $url | 205 | $entry = $this->get('wallabag_core.content_proxy')->updateEntry( |
206 | ); | 206 | $entry, |
207 | $url | ||
208 | ); | ||
209 | } catch (\Exception $e) { | ||
210 | $this->get('logger')->error('Error while saving an entry', [ | ||
211 | 'exception' => $e, | ||
212 | 'entry' => $entry, | ||
213 | ]); | ||
214 | $entry->setUrl($url); | ||
215 | } | ||
207 | } | 216 | } |
208 | 217 | ||
209 | if (!is_null($title)) { | 218 | if (!is_null($title)) { |