Skip to content

Commit

Permalink
fix for storing/getting bookmark-folders
Browse files Browse the repository at this point in the history
called by Quix0r

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6825 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
sixcooler committed Apr 20, 2010
1 parent 7b69d79 commit 13f5b8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/data/bookmarksDB.java
Expand Up @@ -737,7 +737,7 @@ public String getFoldersString(){
final String s[] = listManager.collection2string(getTags()).split(",");
final StringBuilder stringBuilder = new StringBuilder();
for (final String element : s){
if(!element.startsWith("/")){
if(element.startsWith("/")){
stringBuilder.append(element);
stringBuilder.append(",");
}
Expand Down

0 comments on commit 13f5b8e

Please sign in to comment.