Removed debug statement; Changed option name

This commit is contained in:
cyian-1756 2018-02-25 19:51:28 -05:00
parent 8c86377a7f
commit c0a0b9dce8

View File

@ -68,8 +68,7 @@ public abstract class AbstractHTMLRipper extends AlbumRipper {
Document doc = getFirstPage();
while (doc != null) {
logger.debug("alreadyDownloadedUrls is " + alreadyDownloadedUrls);
if (alreadyDownloadedUrls >= Utils.getConfigInteger("skip_after_already_seen", -1) && !isThisATest()) {
if (alreadyDownloadedUrls >= Utils.getConfigInteger("history.end_rip_after_already_seen", -1) && !isThisATest()) {
sendUpdate(STATUS.DOWNLOAD_COMPLETE, "Already seen the last " + alreadyDownloadedUrls + " images ending rip");
break;
}