Return local Sones from core and web interface.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / GetStatusAjaxPage.java
index bb59a8d..84c96dd 100644 (file)
@@ -29,6 +29,7 @@ import java.util.HashSet;
 import java.util.List;
 import java.util.Set;
 
+import net.pterodactylus.sone.data.LocalSone;
 import net.pterodactylus.sone.data.Post;
 import net.pterodactylus.sone.data.PostReply;
 import net.pterodactylus.sone.data.Sone;
@@ -73,7 +74,7 @@ public class GetStatusAjaxPage extends JsonPage {
         */
        @Override
        protected JsonReturnObject createJsonObject(FreenetRequest request) {
-               final Optional<Sone> currentSone = getCurrentSone(request.getToadletContext(), false);
+               final Optional<LocalSone> currentSone = getCurrentSone(request.getToadletContext(), false);
                /* load Sones. always return the status of the current Sone. */
                Set<Sone> sones = new HashSet<Sone>(currentSone.asSet());
                String loadSoneIds = request.getHttpRequest().getParam("soneIds");
@@ -191,7 +192,7 @@ public class GetStatusAjaxPage extends JsonPage {
         *            The current Sone (may be {@code null})
         * @return The current options
         */
-       private static JsonNode createJsonOptions(Optional<Sone> currentSone) {
+       private static JsonNode createJsonOptions(Optional<LocalSone> currentSone) {
                ObjectNode options = new ObjectNode(instance);
                if (currentSone.isPresent()) {
                        options.put("ShowNotification/NewSones", currentSone.get().getOptions().isShowNewSoneNotifications());