aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/EntryController.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2015-08-24 19:52:31 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2015-08-24 19:52:31 +0200
commitd13de40db6fe5a006eb050908450b7adf3fcbf6c (patch)
tree3eb9f073850c83ccbdf064cf3ee2d26087b8af8d /src/Wallabag/CoreBundle/Controller/EntryController.php
parenta1413a3da9e845a0f2e00e73069f5363864367bd (diff)
downloadwallabag-d13de40db6fe5a006eb050908450b7adf3fcbf6c.tar.gz
wallabag-d13de40db6fe5a006eb050908450b7adf3fcbf6c.tar.zst
wallabag-d13de40db6fe5a006eb050908450b7adf3fcbf6c.zip
Update url from graby
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/EntryController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/EntryController.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/EntryController.php b/src/Wallabag/CoreBundle/Controller/EntryController.php
index 8e714763..e6580a57 100644
--- a/src/Wallabag/CoreBundle/Controller/EntryController.php
+++ b/src/Wallabag/CoreBundle/Controller/EntryController.php
@@ -32,6 +32,7 @@ class EntryController extends Controller
32 if ($form->isValid()) { 32 if ($form->isValid()) {
33 $content = $this->get('wallabag_core.graby')->fetchContent($entry->getUrl()); 33 $content = $this->get('wallabag_core.graby')->fetchContent($entry->getUrl());
34 34
35 $entry->setUrl($content['url'] ?: $entry->getUrl());
35 $entry->setTitle($content['title']); 36 $entry->setTitle($content['title']);
36 $entry->setContent($content['html']); 37 $entry->setContent($content['html']);
37 $entry->setMimetype($content['content_type']); 38 $entry->setMimetype($content['content_type']);