fix "Ljava.lang.String" in crawl queue anchor name

(e.g. IndexCreateQueues_p.html?stack=LOCAL with images in queue)
pull/1/head
reger 11 years ago
parent 3963bca3b6
commit 8f77719091

@ -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()) {
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());
sb.append(d.dc_description()[0]);
}
}
if (sb.length() < Request.descrLength - tagname.length()) {
sb.append(' ');

Loading…
Cancel
Save