not-an-aardvark / snoowrap

A JavaScript wrapper for the reddit API
MIT License
1.01k stars 125 forks source link

expandReplies and fetchMore dont works. snoowrap #345

Open Andrew213 opened 2 years ago

Andrew213 commented 2 years ago

they return the unchanged length of comments

    const commentsArr = await r.getSubmission(req.body.postId).expandReplies({ depth: 2, limit: 2 });

or

const commentsArr = await r.getSubmission(req.body.postId).comments.fetchMore({ amount: 2 });

I want to get only 2 comments with 2 replies