X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffcp%2FGetPostCommand.java;h=bb874073ab0fbf72c16b740e37d6e9544bcaa044;hb=0df5e91852f737d760c5a9f54c5667309fbadcc2;hp=391694f0f0df022425ca121118227fc1b719e101;hpb=a502beddd4dee5354c0955ea1436d4e49f5488f6;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/fcp/GetPostCommand.java b/src/main/java/net/pterodactylus/sone/fcp/GetPostCommand.java index 391694f..bb87407 100644 --- a/src/main/java/net/pterodactylus/sone/fcp/GetPostCommand.java +++ b/src/main/java/net/pterodactylus/sone/fcp/GetPostCommand.java @@ -36,7 +36,7 @@ public class GetPostCommand extends AbstractSoneCommand { * @param core * The Sone core */ - protected GetPostCommand(Core core) { + public GetPostCommand(Core core) { super(core); } @@ -48,7 +48,7 @@ public class GetPostCommand extends AbstractSoneCommand { Post post = getPost(parameters, "Post"); boolean includeReplies = getBoolean(parameters, "IncludeReplies", true); - return new Response(encodePost(post, "Post.", includeReplies)); + return new Response("Post", encodePost(post, "Post.", includeReplies)); } }