Author: bombe
Date: 2006-06-02 00:19:30 +0000 (Fri, 02 Jun 2006)
New Revision: 8975

Modified:
   trunk/freenet/src/freenet/clients/http/BookmarkManager.java
Log:
bookmark manager wouldn't save config if bookmark was deleted

Modified: trunk/freenet/src/freenet/clients/http/BookmarkManager.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/BookmarkManager.java 2006-06-02 
00:15:45 UTC (rev 8974)
+++ trunk/freenet/src/freenet/clients/http/BookmarkManager.java 2006-06-02 
00:19:30 UTC (rev 8975)
@@ -152,11 +152,11 @@
                        try {
                                USK u = USK.create(b.key);
                                this.node.uskManager.subscribe(u, this.uskcb, 
true);
-                               node.config.store();
                        } catch (MalformedURLException mue) {

                        }
                }
                this.bookmarks.remove(b);
+               node.config.store();
        }
 }


Reply via email to