@ -537,8 +535,8 @@ public class CollectionConfiguration extends SchemaConfiguration implements Seri
}
// unique-fields; these values must be corrected during postprocessing. (the following logic is !^ (not-xor) but I prefer to write it that way as it is)
add(doc,CollectionSchema.http_unique_b, UNIQUE_HEURISTIC_PREFER_HTTPS ?digestURL.isHTTPS():digestURL.isHTTP());// this must be corrected afterwards during storage!
add(doc,CollectionSchema.www_unique_b, host !=null&&(UNIQUE_HEURISTIC_PREFER_WWWPREFIX?host.startsWith("www."):!host.startsWith("www.")));// this must be corrected afterwards during storage!
add(doc,CollectionSchema.http_unique_b,setUnique ||UNIQUE_HEURISTIC_PREFER_HTTPS ?digestURL.isHTTPS():digestURL.isHTTP());// this must be corrected afterwards during storage!
add(doc,CollectionSchema.www_unique_b,setUnique ||host !=null&&(UNIQUE_HEURISTIC_PREFER_WWWPREFIX?host.startsWith("www."):!host.startsWith("www.")));// this must be corrected afterwards during storage!