Move reply like functionality from Sone to Reply.
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / LikeReplyCommand.java
index a462f08..4e0c3fe 100644 (file)
@@ -42,15 +42,12 @@ public class LikeReplyCommand extends AbstractSoneCommand {
                super(core, true);
        }
 
-       /**
-        * {@inheritDoc}
-        */
        @Override
        public Response execute(SimpleFieldSet parameters, Bucket data, AccessType accessType) throws FcpException {
                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());
+               Sone sone = getMandatoryLocalSone(parameters, "Sone");
+               reply.like(sone);
+               return new Response("ReplyLiked", new SimpleFieldSetBuilder().put("LikeCount", reply.getLikes().size()).get());
        }
 
 }