1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 07:14:38 +02:00

Merge pull request #1233 from Gamerick/master

Post skipping message now writes to the UI log instead of to the file…
This commit is contained in:
cyian-1756
2019-03-02 16:24:41 -05:00
committed by GitHub

View File

@@ -174,7 +174,7 @@ public class RedditRipper extends AlbumRipper {
if (score > maxScore || score < minScore) {
String message = "Skipping post with score outside specified range of " + minScore + " to " + maxScore;
LOGGER.debug(message);
sendUpdate(RipStatusMessage.STATUS.DOWNLOAD_WARN, message);
return; //Outside specified range, do not download
}
}