Change Sone downloading logic.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / Core.java
index cf61941..eb517fc 100644 (file)
@@ -135,7 +135,6 @@ public class Core extends AbstractService {
        public Sone getSone(String soneId) {
                if (!soneCache.containsKey(soneId)) {
                        Sone sone = new Sone(soneId);
-                       soneDownloader.addSone(sone);
                        soneCache.put(soneId, sone);
                }
                return soneCache.get(soneId);
@@ -210,6 +209,17 @@ public class Core extends AbstractService {
        //
 
        /**
+        * Adds a Sone to watch for updates. The Sone needs to be completely
+        * initialized.
+        *
+        * @param sone
+        *            The Sone to watch for updates
+        */
+       public void addSone(Sone sone) {
+               soneDownloader.addSone(sone);
+       }
+
+       /**
         * Adds the given Sone.
         *
         * @param sone
@@ -219,7 +229,6 @@ public class Core extends AbstractService {
                if (localSones.add(sone)) {
                        SoneInserter soneInserter = new SoneInserter(freenetInterface, sone);
                        soneInserter.start();
-                       soneDownloader.removeSone(sone);
                        soneInserters.put(sone, soneInserter);
                }
        }