Use “isLoaded” method to check whether a post is loaded.
[Sone.git] / src / main / java / net / pterodactylus / sone / template / PostAccessor.java
index 6064017..78db678 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - PostAccessor.java - Copyright © 2010–2012 David Roden
+ * Sone - PostAccessor.java - Copyright © 2010–2013 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
@@ -57,7 +57,7 @@ public class PostAccessor extends ReflectionAccessor {
        public Object get(TemplateContext templateContext, Object object, String member) {
                Post post = (Post) object;
                if ("replies".equals(member)) {
-                       return Collections2.filter(core.getReplies(post), Reply.FUTURE_REPLY_FILTER);
+                       return Collections2.filter(core.getReplies(post.getId()), Reply.FUTURE_REPLY_FILTER);
                } else if (member.equals("likes")) {
                        return core.getLikes(post);
                } else if (member.equals("liked")) {
@@ -67,8 +67,6 @@ public class PostAccessor extends ReflectionAccessor {
                        return !post.isKnown();
                } else if (member.equals("bookmarked")) {
                        return core.isBookmarked(post);
-               } else if (member.equals("loaded")) {
-                       return post.getSone() != null;
                }
                return super.get(templateContext, object, member);
        }