aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/manganelo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/manganelo.py b/plugins/manganelo.py
index 0745321..0391eec 100755
--- a/plugins/manganelo.py
+++ b/plugins/manganelo.py
@@ -167,7 +167,7 @@ def download_chapter_images(url, download_dir, use_backup_server):
image_path = os.path.join(download_dir, image_name)
print("Downloading {} to {}".format(image_source, image_path))
file_size = download_file(image_source, image_path)
- if file_size < 255:
+ if file_size < 100:
print("resource temporary unavailable: %s" % image_source)
return False
img_number += 1