Rename getReply() to getPostReply(), remove convenience method.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / MarkAsKnownAjaxPage.java
index 370bacd..7944e11 100644 (file)
@@ -63,7 +63,7 @@ public class MarkAsKnownAjaxPage extends JsonPage {
                                }
                                core.markPostKnown(post);
                        } else if (type.equals("reply")) {
-                               PostReply reply = core.getReply(id, false);
+                               PostReply reply = core.getPostReply(id, false);
                                if (reply == null) {
                                        continue;
                                }