X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffcp%2FLikePostCommand.java;h=37f69ec9dcd294dcf690f396ef04b5d073131534;hb=0df5e91852f737d760c5a9f54c5667309fbadcc2;hp=42ca40960e559d87c1d4b624d6072ee3757a9bb3;hpb=6326513ecf086da2a2909a0d2a61913078b2870a;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/fcp/LikePostCommand.java b/src/main/java/net/pterodactylus/sone/fcp/LikePostCommand.java index 42ca409..37f69ec 100644 --- a/src/main/java/net/pterodactylus/sone/fcp/LikePostCommand.java +++ b/src/main/java/net/pterodactylus/sone/fcp/LikePostCommand.java @@ -39,7 +39,7 @@ public class LikePostCommand extends AbstractSoneCommand { * The Sone core */ protected LikePostCommand(Core core) { - super(core); + super(core, true); } /** @@ -48,9 +48,9 @@ public class LikePostCommand extends AbstractSoneCommand { @Override public Response execute(SimpleFieldSet parameters, Bucket data, AccessType accessType) throws FcpException { Post post = getPost(parameters, "Post"); - Sone sone = getSone(parameters, "Sone"); + Sone sone = getSone(parameters, "Sone", true); sone.addLikedPostId(post.getId()); - return new Response(new SimpleFieldSetBuilder().put("Message", "PostLiked").put("LikeCount", getCore().getLikes(post).size()).get()); + return new Response("PostLiked", new SimpleFieldSetBuilder().put("LikeCount", getCore().getLikes(post).size()).get()); } }