Reverse -n, --no-prop-file behaviour

This commit is contained in:
bored 2018-05-25 22:25:22 +01:00
parent e5e8d097a0
commit fa0d7ed96d

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"));
}
}