From bc3d3b4c976849a5990f3c40d7b7a379385b6052 Mon Sep 17 00:00:00 2001 From: apfelmaennchen Date: Mon, 3 Mar 2008 22:36:27 +0000 Subject: [PATCH] fixed rebuildTags() to correctly rebuild folders... git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4523 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/data/bookmarksDB.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/de/anomic/data/bookmarksDB.java b/source/de/anomic/data/bookmarksDB.java index d0866c7ff..6bb55588e 100644 --- a/source/de/anomic/data/bookmarksDB.java +++ b/source/de/anomic/data/bookmarksDB.java @@ -494,8 +494,8 @@ public class bookmarksDB { Tag tag; String[] tags; while(it.hasNext()){ - bookmark=(Bookmark) it.next(); - tags = bookmark.getTagsString().split(","); + bookmark=(Bookmark) it.next(); + tags = cleanTagsString(bookmark.getTagsString() + bookmark.getFoldersString()).split(","); tag=null; for(int i=0;i