Remove more convenience methods.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ViewPostPage.java
index 98b2603..336157e 100644 (file)
@@ -72,7 +72,7 @@ public class ViewPostPage extends SoneTemplatePage {
                super.processTemplate(request, templateContext);
                String postId = request.getHttpRequest().getParam("post");
                boolean raw = request.getHttpRequest().getParam("raw").equals("true");
-               Post post = webInterface.getCore().getPost(postId);
+               Post post = webInterface.getCore().getPost(postId, false);
                templateContext.set("post", post);
                templateContext.set("raw", raw);
        }