Update years in copyright line
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / LikeReplyCommand.java
index a9795b2..edfa742 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - LikeReplyCommand.java - Copyright © 2011 David Roden
+ * Sone - LikeReplyCommand.java - Copyright © 2011–2015 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@
 package net.pterodactylus.sone.fcp;
 
 import net.pterodactylus.sone.core.Core;
-import net.pterodactylus.sone.data.Reply;
+import net.pterodactylus.sone.data.PostReply;
 import net.pterodactylus.sone.data.Sone;
 import net.pterodactylus.sone.freenet.SimpleFieldSetBuilder;
 import net.pterodactylus.sone.freenet.fcp.FcpException;
@@ -39,7 +39,7 @@ public class LikeReplyCommand extends AbstractSoneCommand {
         *            The Sone core
         */
        protected LikeReplyCommand(Core core) {
-               super(core);
+               super(core, true);
        }
 
        /**
@@ -47,8 +47,8 @@ public class LikeReplyCommand extends AbstractSoneCommand {
         */
        @Override
        public Response execute(SimpleFieldSet parameters, Bucket data, AccessType accessType) throws FcpException {
-               Reply reply = getReply(parameters, "Reply");
-               Sone sone = getSone(parameters, "Sone");
+               PostReply reply = getReply(parameters, "Reply");
+               Sone sone = getSone(parameters, "Sone", true);
                sone.addLikedReplyId(reply.getId());
                return new Response("ReplyLiked", new SimpleFieldSetBuilder().put("LikeCount", getCore().getLikes(reply).size()).get());
        }