mirror of
https://github.com/yacy/yacy_search_server.git
synced 2025-07-23 09:24:39 -04:00
fix "Ljava.lang.String" in crawl queue anchor name
(e.g. IndexCreateQueues_p.html?stack=LOCAL with images in queue)
This commit is contained in:
@ -985,9 +985,11 @@ dc_rights
|
||||
}
|
||||
StringBuilder sb = new StringBuilder(60);
|
||||
sb.append(d.dc_title());
|
||||
if (!d.dc_description().equals(d.dc_title()) && sb.length() < Request.descrLength - tagname.length()) {
|
||||
sb.append(' ');
|
||||
sb.append(d.dc_description());
|
||||
if (d.dc_description().length > 0) {
|
||||
if (!d.dc_description()[0].equals(d.dc_title()) && sb.length() < Request.descrLength - tagname.length()) {
|
||||
sb.append(' ');
|
||||
sb.append(d.dc_description()[0]);
|
||||
}
|
||||
}
|
||||
if (sb.length() < Request.descrLength - tagname.length()) {
|
||||
sb.append(' ');
|
||||
|
Reference in New Issue
Block a user