Skip to content

Commit

Permalink
remove quality=95 preference
Browse files Browse the repository at this point in the history
  • Loading branch information
watzeedzad committed Apr 17, 2024
1 parent ddc7306 commit 85c694f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lncrawl/core/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def _fetch_content_image(app, url, image_file: Path):
img.convert("RGBA").convert("RGB")
else:
img = img.convert("RGB")
img.save(image_file.as_posix(), "JPEG", optimized=True, quality=95)
img.save(image_file.as_posix(), "JPEG", optimized=True)
img.close()
logger.debug("Saved image: %s", image_file)
finally:
Expand Down

0 comments on commit 85c694f

Please sign in to comment.