1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-18 11:41:21 +02:00

Break if already downloaded x times

same as in AbstractHTMLRipper
This commit is contained in:
torbica
2018-05-24 16:29:47 +02:00
committed by GitHub
parent d11dfe814b
commit 5724929678

View File

@@ -71,6 +71,11 @@ public abstract class AbstractJSONRipper extends AlbumRipper {
if (isStopped()) { if (isStopped()) {
break; break;
} }
if (alreadyDownloadedUrls >= Utils.getConfigInteger("history.end_rip_after_already_seen", 1000000000) && !isThisATest()) {
sendUpdate(STATUS.DOWNLOAD_COMPLETE, "Already seen the last " + alreadyDownloadedUrls + " images ending rip");
break;
}
index += 1; index += 1;
logger.debug("Found image url #" + index+ ": " + imageURL); logger.debug("Found image url #" + index+ ": " + imageURL);
downloadURL(new URL(imageURL), index); downloadURL(new URL(imageURL), index);