Move post creation back to CreatePostPage.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Sone.java
index 33b97a0..dbe1b35 100644 (file)
@@ -217,13 +217,14 @@ public class Sone {
        }
 
        /**
-        * Adds the given post to this Sone.
+        * Adds the given post to this Sone. The post will not be added if its
+        * {@link Post#getSone() Sone} is not this Sone.
         *
         * @param post
         *            The post to add
         */
        public synchronized void addPost(Post post) {
-               if (posts.add(post)) {
+               if (post.getSone().equals(this) && posts.add(post)) {
                        modificationCounter++;
                }
        }
@@ -235,7 +236,7 @@ public class Sone {
         *            The post to remove
         */
        public synchronized void removePost(Post post) {
-               if (posts.remove(post)) {
+               if (post.getSone().equals(this) && posts.remove(post)) {
                        modificationCounter++;
                }
        }