-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't load all comments #56
Labels
Comments
Ok thanks I'll take a look at it. The solution PRAW used should be simple enough to implement. |
Commits To see it in action, see this example: RedditClient reddit = // <whatever>
CommentNode root = reddit.getSubmission("2onit4").getComments();
root.loadFully(reddit); // Expand all MoreChildren objects
root.visualize(); // Preview the thread using the Logger This results in this output:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some comment trees have a "continue this thread" option. Currently JRAW doesn't expand the full comment tree:
see e.g.
http://www.reddit.com/r/test/comments/2onit4/test_depth_0/
(scroll down to depth 10)
This is a known issue and has recently been fixed on PRAW, see e.g.
http://www.reddit.com/r/redditdev/comments/2onkd8/praw_maximum_depth_of_subtrees/
The text was updated successfully, but these errors were encountered: