Return an optional Sone from the current session.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / FollowSonePage.java
index 11a680c..ca29fc9 100644 (file)
@@ -54,7 +54,7 @@ public class FollowSonePage extends SoneTemplatePage {
                super.processTemplate(request, templateContext);
                if (request.getMethod() == Method.POST) {
                        String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 256);
-                       Sone currentSone = getCurrentSone(request.getToadletContext());
+                       Sone currentSone = getCurrentSone(request.getToadletContext()).get();
                        String soneIds = request.getHttpRequest().getPartAsStringFailsafe("sone", 1200);
                        for (String soneId : soneIds.split("[ ,]+")) {
                                Optional<Sone> sone = webInterface.getCore().getSone(soneId);