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:
Kristinn Sigurðsson
2025-10-01 08:35:50 +00:00
committed by GitHub
@@ -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);