1
0
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:
Michael Peter Christen
2015-05-28 17:43:52 +02:00
parent 197f7449e5
commit 47682bf467

@ -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++;
}