mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-08-25 07:56:35 +00:00
Merge pull request #670 from internetarchive/adam/fix_configurable_js_extractor_strict_overlay
fix: sheet setting of extractorJs.strict doesn't work without kp keyname matching
This commit is contained in:
@@ -47,10 +47,10 @@ public class ConfigurableExtractorJS extends ExtractorJS {
|
||||
|
||||
/** If true, then only extract non-relative paths */
|
||||
public boolean getStrict() {
|
||||
return (Boolean) kp.get("strictMode");
|
||||
return (Boolean) kp.get("strict");
|
||||
}
|
||||
public void setStrict(boolean strict) {
|
||||
kp.put("strictMode", strict);
|
||||
kp.put("strict", strict);
|
||||
}
|
||||
{
|
||||
setStrict(false);
|
||||
|
||||
Reference in New Issue
Block a user