Merge pull request #622 from bored/no-prop-file

Reverse -n, --no-prop-file behaviour
This commit is contained in:
cyian-1756 2018-05-29 23:49:33 -04:00 committed by GitHub
commit ce8c9aa2e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,7 +225,7 @@ public class App {
logger.debug("Skipping over line \"" + url + "\"because it is a comment");
} else {
// loop through each url in the file and process each url individually.
ripURL(url.trim(), cl.hasOption("n"));
ripURL(url.trim(), !cl.hasOption("n"));
}
}
} catch (FileNotFoundException fne) {
@ -238,7 +238,7 @@ public class App {
//The URL to rip.
if (cl.hasOption('u')) {
String url = cl.getOptionValue('u').trim();
ripURL(url, cl.hasOption("n"));
ripURL(url, !cl.hasOption("n"));
}
}