Update years in copyright line
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / DeletePostCommand.java
index e4e42f0..d411233 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - DeletePostCommand.java - Copyright © 2011 David Roden
+ * Sone - DeletePostCommand.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
@@ -39,7 +39,7 @@ public class DeletePostCommand extends AbstractSoneCommand {
         *            The Sone core
         */
        public DeletePostCommand(Core core) {
-               super(core);
+               super(core, true);
        }
 
        /**
@@ -48,7 +48,7 @@ public class DeletePostCommand extends AbstractSoneCommand {
        @Override
        public Response execute(SimpleFieldSet parameters, Bucket data, AccessType accessType) throws FcpException {
                Post post = getPost(parameters, "Post");
-               if (!getCore().isLocalSone(post.getSone())) {
+               if (!post.getSone().isLocal()) {
                        return new ErrorResponse(401, "Not allowed.");
                }
                return new Response("PostDeleted", new SimpleFieldSetBuilder().get());