From 7e3e9ba0de7c4bd5516bff8f2cf14a67a15edf3d Mon Sep 17 00:00:00 2001 From: orbiter Date: Mon, 1 Aug 2005 20:36:27 +0000 Subject: [PATCH] fix for http://www.yacy-forum.de/viewtopic.php?p=6563#6563 git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@472 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 cb7c88dd4..1b0ad4869 100644 --- a/source/de/anomic/plasma/plasmaSwitchboardQueue.java +++ b/source/de/anomic/plasma/plasmaSwitchboardQueue.java @@ -171,7 +171,7 @@ public class plasmaSwitchboardQueue { this.initiator = new String(row[4]); this.depth = (int) serverCodings.enhancedCoder.decodeBase64Long(new String(row[5])); this.profileHandle = new String(row[6]); - this.anchorName = new String(row[7]); + this.anchorName = (row[7] == null) ? null : new String(row[7]); this.profileEntry = null; this.responseHeader = null;