diff --git a/gallery_dl/extractor/instagram.py b/gallery_dl/extractor/instagram.py index 1b7cb6d4..27fa7771 100644 --- a/gallery_dl/extractor/instagram.py +++ b/gallery_dl/extractor/instagram.py @@ -269,8 +269,8 @@ class InstagramExtractor(Extractor): width = image["width"] height = image["height"] - if self._warn_image < ((width < width_orig) + - (height < height_orig)): + if self._warn_image < ((width * 1.1 < width_orig) + + (height * 1.1 < height_orig)): self.log.warning( "%s: Available image resolutions lower than the " "original (%sx%s < %sx%s). "