aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Helper
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-05-11 17:39:21 +0200
committerGitHub <noreply@github.com>2017-05-11 17:39:21 +0200
commit06568b15bb9e9116fa4d4a42246e1b0e497bbf25 (patch)
tree66bac04bfd2ea2bf7571502dee4f14623c9d996e /src/Wallabag/CoreBundle/Helper
parent7987816d1e83267199c170279213412c6086e665 (diff)
parent1517d5772db05ce86b9958dc6545471d8702bf60 (diff)
downloadwallabag-06568b15bb9e9116fa4d4a42246e1b0e497bbf25.tar.gz
wallabag-06568b15bb9e9116fa4d4a42246e1b0e497bbf25.tar.zst
wallabag-06568b15bb9e9116fa4d4a42246e1b0e497bbf25.zip
Merge pull request #3108 from wallabag/store-headers
Added headers field in Entry
Diffstat (limited to 'src/Wallabag/CoreBundle/Helper')
-rw-r--r--src/Wallabag/CoreBundle/Helper/ContentProxy.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Helper/ContentProxy.php b/src/Wallabag/CoreBundle/Helper/ContentProxy.php
index d45aef88..9a08db3d 100644
--- a/src/Wallabag/CoreBundle/Helper/ContentProxy.php
+++ b/src/Wallabag/CoreBundle/Helper/ContentProxy.php
@@ -87,6 +87,10 @@ class ContentProxy
87 $entry->setPublishedBy($content['authors']); 87 $entry->setPublishedBy($content['authors']);
88 } 88 }
89 89
90 if (!empty($content['all_headers'])) {
91 $entry->setHeaders($content['all_headers']);
92 }
93
90 $entry->setLanguage(isset($content['language']) ? $content['language'] : ''); 94 $entry->setLanguage(isset($content['language']) ? $content['language'] : '');
91 $entry->setMimetype(isset($content['content_type']) ? $content['content_type'] : ''); 95 $entry->setMimetype(isset($content['content_type']) ? $content['content_type'] : '');
92 $entry->setReadingTime(Utils::getReadingTime($html)); 96 $entry->setReadingTime(Utils::getReadingTime($html));