diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-08-07 21:57:53 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-08-07 21:57:53 +0200 |
commit | 0bc2baa65cad31bcd353e82480ec3f6dc2e792a7 (patch) | |
tree | ac22b4142ba03d5ceb31c7022d9a99a6adeace54 /src/Wallabag | |
parent | 54139268f8648ee8d08f120949df4f1f5b8dd938 (diff) | |
download | wallabag-0bc2baa65cad31bcd353e82480ec3f6dc2e792a7.tar.gz wallabag-0bc2baa65cad31bcd353e82480ec3f6dc2e792a7.tar.zst wallabag-0bc2baa65cad31bcd353e82480ec3f6dc2e792a7.zip |
fix #564: replace Untitled by the domain name
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Service/Extractor.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Service/Extractor.php b/src/Wallabag/CoreBundle/Service/Extractor.php index 6d43a1da..961ac20a 100644 --- a/src/Wallabag/CoreBundle/Service/Extractor.php +++ b/src/Wallabag/CoreBundle/Service/Extractor.php | |||
@@ -10,7 +10,7 @@ final class Extractor | |||
10 | public static function extract($url) | 10 | public static function extract($url) |
11 | { | 11 | { |
12 | $pageContent = self::getPageContent(new Url(base64_encode($url))); | 12 | $pageContent = self::getPageContent(new Url(base64_encode($url))); |
13 | $title = $pageContent['rss']['channel']['item']['title'] ?: 'Untitled'; | 13 | $title = $pageContent['rss']['channel']['item']['title'] ?: parse_url($url, PHP_URL_HOST); |
14 | $body = $pageContent['rss']['channel']['item']['description']; | 14 | $body = $pageContent['rss']['channel']['item']['description']; |
15 | 15 | ||
16 | $content = new Content(); | 16 | $content = new Content(); |