Remove possibility to create Sones from sone provider interface.
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / GetPostFeedCommand.java
index 5f2fd14..f842ac4 100644 (file)
@@ -66,7 +66,7 @@ public class GetPostFeedCommand extends AbstractSoneCommand {
                        if (!getCore().hasSone(friendSoneId)) {
                                continue;
                        }
-                       allPosts.addAll(getCore().getSone(friendSoneId, false).getPosts());
+                       allPosts.addAll(getCore().getSone(friendSoneId).getPosts());
                }
                allPosts.addAll(getCore().getDirectedPosts(sone));
                allPosts = Collections2.filter(allPosts, Post.FUTURE_POSTS_FILTER);