diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Wallabag/CoreBundle/Helper/ContentProxy.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Wallabag/CoreBundle/Helper/ContentProxy.php b/src/Wallabag/CoreBundle/Helper/ContentProxy.php index 2a650e97..5622cc83 100644 --- a/src/Wallabag/CoreBundle/Helper/ContentProxy.php +++ b/src/Wallabag/CoreBundle/Helper/ContentProxy.php | |||
@@ -127,10 +127,7 @@ class ContentProxy | |||
127 | 127 | ||
128 | // if content is an image, define it as a preview too | 128 | // if content is an image, define it as a preview too |
129 | if (!empty($content['content_type']) && in_array($this->mimeGuesser->guess($content['content_type']), ['jpeg', 'jpg', 'gif', 'png'], true)) { | 129 | if (!empty($content['content_type']) && in_array($this->mimeGuesser->guess($content['content_type']), ['jpeg', 'jpg', 'gif', 'png'], true)) { |
130 | $this->validateAndSetPreviewPicture( | 130 | $this->updatePreviewPicture($entry, $content['url']); |
131 | $entry, | ||
132 | $content['url'] | ||
133 | ); | ||
134 | } | 131 | } |
135 | 132 | ||
136 | if (!empty($content['content_type'])) { | 133 | if (!empty($content['content_type'])) { |