Parse Sone from fetch result.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / Core.java
index 3aab417..cf61941 100644 (file)
@@ -135,6 +135,7 @@ 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);
@@ -218,7 +219,7 @@ public class Core extends AbstractService {
                if (localSones.add(sone)) {
                        SoneInserter soneInserter = new SoneInserter(freenetInterface, sone);
                        soneInserter.start();
-                       soneDownloader.addSone(sone);
+                       soneDownloader.removeSone(sone);
                        soneInserters.put(sone, soneInserter);
                }
        }
@@ -290,6 +291,7 @@ public class Core extends AbstractService {
        public void loadSone(String requestUri) {
                try {
                        FetchResult fetchResult = freenetInterface.fetchUri(new FreenetURI(requestUri).setMetaString(new String[] { "sone.xml" }));
+                       soneDownloader.parseSone(null, fetchResult);
                } catch (MalformedURLException mue1) {
                        logger.log(Level.INFO, "Could not create URI from “" + requestUri + "”.", mue1);
                }