mirror of
https://github.com/yacy/yacy_search_server.git
synced 2025-07-20 08:54:37 -04:00
fix for unresolved pattern
This commit is contained in:
@ -158,9 +158,9 @@ public class CrawlProfileEditor_p {
|
||||
prop.put(EDIT_ENTRIES_PREFIX + count + "_readonly_type", attribute.type);
|
||||
if (attribute.type == CrawlProfile.CrawlAttribute.BOOLEAN) {
|
||||
prop.put(EDIT_ENTRIES_PREFIX + count + "_readonly_type_checked",
|
||||
Boolean.parseBoolean(val) ? "1" : "0");
|
||||
val == null ? "0" : Boolean.parseBoolean(val) ? "1" : "0");
|
||||
} else {
|
||||
prop.put(EDIT_ENTRIES_PREFIX + count + "_readonly_type_value", val);
|
||||
prop.put(EDIT_ENTRIES_PREFIX + count + "_readonly_type_value", val == null ? "" : val);
|
||||
}
|
||||
count++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user