From c094e3176064a444466c3efae9bf62b03508b66c Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sat, 8 Jun 2024 07:28:17 +0400 Subject: [PATCH] images: fixed wrong errors on searching broken images files (closes #12430) --- .../org/mage/plugins/card/images/DownloadPicturesService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPicturesService.java b/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPicturesService.java index 829f751180f..88683dcbff4 100644 --- a/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPicturesService.java +++ b/Mage.Client/src/main/java/org/mage/plugins/card/images/DownloadPicturesService.java @@ -54,7 +54,7 @@ public class DownloadPicturesService extends DefaultBoundedRangeModel implements private static final int MAX_ERRORS_COUNT_BEFORE_CANCEL = 50; - private static final int MIN_FILE_SIZE_OF_GOOD_IMAGE = 1024 * 10; // protect from wrong data save + private static final int MIN_FILE_SIZE_OF_GOOD_IMAGE = 1024 * 6; // protect from wrong data save private final DownloadImagesDialog uiDialog; private boolean needCancel;