From 0a6cf3f5e74ab9b18a1142b5dfb5ef477521bc9f Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@6c8d7289-2bf4-0310-a012-ef5d649a1542> Date: Tue, 19 Apr 2005 06:33:53 +0000 Subject: [PATCH] *) Bugfix: Reference to plasmaHTCache.Entry.urlString was not set correctly git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@23 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/IndexCreate_p.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/IndexCreate_p.java b/htroot/IndexCreate_p.java index 717a8dca7..e2be76047 100644 --- a/htroot/IndexCreate_p.java +++ b/htroot/IndexCreate_p.java @@ -307,7 +307,7 @@ public class IndexCreate_p { prop.put("indexing-queue_list_"+i+"_modified", daydate(pcentry.lastModified)); prop.put("indexing-queue_list_"+i+"_href",((pcentry.scraper == null) ? "0" : ("" + pcentry.scraper.getAnchors().size()))); prop.put("indexing-queue_list_"+i+"_anchor", ((pcentry.scraper == null) ? "-" : pcentry.scraper.getHeadline()) ); - prop.put("indexing-queue_list_"+i+"_url", pcentry.nomalizedURLString); + prop.put("indexing-queue_list_"+i+"_url", pcentry.urlString); dark = !dark; } }