Remove the possibility to create Sones from the getLocalSone() method.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / LockSonePage.java
index 604b176..f72252f 100644 (file)
@@ -53,7 +53,7 @@ public class LockSonePage extends SoneTemplatePage {
        protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
                super.processTemplate(request, templateContext);
                String soneId = request.getHttpRequest().getPartAsStringFailsafe("sone", 44);
-               Sone sone = webInterface.getCore().getLocalSone(soneId, false);
+               Sone sone = webInterface.getCore().getLocalSone(soneId);
                if (sone != null) {
                        webInterface.getCore().lockSone(sone);
                }