Merge pull request #905 from cyian-1756/urlRangeDownloadingImprovements

URL range ripping now appendsLog when it runs into an error
This commit is contained in:
cyian-1756 2018-09-10 03:15:24 -04:00 committed by GitHub
commit 0ad511e95c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1238,7 +1238,8 @@ public final class MainWindow implements Runnable, RipStatusHandler {
queueListModel.add(queueListModel.size(), realURL);
ripTextfield.setText("");
} else {
LOGGER.error("Can't find ripper for " +realURL);
appendLog("Can't find ripper for " + realURL, Color.RED);
LOGGER.error("Can't find ripper for " + realURL);
}
}
}