diff options
-rw-r--r-- | src/Wallabag/CoreBundle/Helper/ContentProxy.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Helper/ContentProxy.php b/src/Wallabag/CoreBundle/Helper/ContentProxy.php index dd9170ad..f752d37e 100644 --- a/src/Wallabag/CoreBundle/Helper/ContentProxy.php +++ b/src/Wallabag/CoreBundle/Helper/ContentProxy.php | |||
@@ -19,6 +19,7 @@ class ContentProxy | |||
19 | { | 19 | { |
20 | protected $graby; | 20 | protected $graby; |
21 | protected $tagger; | 21 | protected $tagger; |
22 | protected $validator; | ||
22 | protected $logger; | 23 | protected $logger; |
23 | protected $mimeGuesser; | 24 | protected $mimeGuesser; |
24 | protected $fetchingErrorMessage; | 25 | protected $fetchingErrorMessage; |
@@ -127,7 +128,7 @@ class ContentProxy | |||
127 | isset($content['open_graph']['og_image']) ? $content['open_graph']['og_image'] : '' | 128 | isset($content['open_graph']['og_image']) ? $content['open_graph']['og_image'] : '' |
128 | ); | 129 | ); |
129 | 130 | ||
130 | // if content is an image define as a preview too | 131 | // if content is an image, define it as a preview too |
131 | if (!empty($content['content_type']) && in_array($this->mimeGuesser->guess($content['content_type']), ['jpeg', 'jpg', 'gif', 'png'], true)) { | 132 | if (!empty($content['content_type']) && in_array($this->mimeGuesser->guess($content['content_type']), ['jpeg', 'jpg', 'gif', 'png'], true)) { |
132 | $this->validateAndSetPreviewPicture( | 133 | $this->validateAndSetPreviewPicture( |
133 | $entry, | 134 | $entry, |