diff --git a/streamrip/media/artwork.py b/streamrip/media/artwork.py index 0de6ad4..33a98c5 100644 --- a/streamrip/media/artwork.py +++ b/streamrip/media/artwork.py @@ -131,7 +131,7 @@ def downscale_image(input_image_path: str, max_dimension: int): # Get the original width and height width, height = image.size - if max_dimension <= max(width, height): + if max_dimension >= max(width, height): return # Calculate the new dimensions while maintaining the aspect ratio