From 41e27b85b71fa1e767e14c7990365ae2c238e676 Mon Sep 17 00:00:00 2001 From: orbiter Date: Fri, 15 Sep 2006 00:38:45 +0000 Subject: [PATCH] fix for crawler condition git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2583 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaSwitchboardQueue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/plasma/plasmaSwitchboardQueue.java b/source/de/anomic/plasma/plasmaSwitchboardQueue.java index e0b115a87..ae8b7af1c 100644 --- a/source/de/anomic/plasma/plasmaSwitchboardQueue.java +++ b/source/de/anomic/plasma/plasmaSwitchboardQueue.java @@ -429,7 +429,7 @@ public class plasmaSwitchboardQueue { // a picture cannot be indexed if (getCachedObjectInfo() != null) { - String status = this.getCachedObjectInfo().shallIndexCacheForProxy(); + String status = this.getCachedObjectInfo().shallIndexCacheForCrawler(); if (status != null) return status; } if (plasmaHTCache.noIndexingURL(nURL)) { return "Media_Content_(forbidden)"; }