From 9b94b374cc6da318b8e1120106572890cd60c28f Mon Sep 17 00:00:00 2001 From: borg-0300 Date: Thu, 16 Mar 2006 23:16:01 +0000 Subject: [PATCH] Bugfix git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1903 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/ProxyIndexingMonitor_p.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/ProxyIndexingMonitor_p.java b/htroot/ProxyIndexingMonitor_p.java index 68ef2e483..acb199de5 100644 --- a/htroot/ProxyIndexingMonitor_p.java +++ b/htroot/ProxyIndexingMonitor_p.java @@ -99,7 +99,7 @@ public class ProxyIndexingMonitor_p { newProxyCachePath = post.get("proxyCache", "DATA/HTCACHE"); newProxyCachePath = newProxyCachePath.replace('\\', '/'); if (newProxyCachePath.endsWith("/")) { - newProxyCachePath.substring(0, newProxyCachePath.length() - 1); + newProxyCachePath = newProxyCachePath.substring(0, newProxyCachePath.length() - 1); } final File cache = new File(newProxyCachePath); if (!cache.isDirectory() && !cache.isFile()) cache.mkdirs();