diff --git a/py34/post.py b/py34/post.py index 4b4ffdc..0d8780b 100644 --- a/py34/post.py +++ b/py34/post.py @@ -36,7 +36,7 @@ class Post: if self._thumbnail_data is not None: return self._thumbnail_data for i in range(5): - res = scraper.get(ThumbnailURL(self.image_dir, self.image_id), retry=False) + res = scraper.get(ThumbnailURL(self.image_dir, self.image_id), retry=False, body=False) if res.status_code == 200: self._thumbnail_data = res.content if res.status_code == 404: