Skip to content

Commit

Permalink
Updating PollVotersPaginationActionImpl limit from 1000 to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
Erich Boschert committed Dec 20, 2024
1 parent 53131b7 commit 36bc729
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class PollVotersPaginationActionImpl extends PaginationActionImpl<User, P
{
public PollVotersPaginationActionImpl(JDA jda, String channelId, String messageId, long answerId)
{
super(jda, Route.Messages.GET_POLL_ANSWER_VOTERS.compile(channelId, messageId, Long.toString(answerId)), 1, 1000, 1000);
super(jda, Route.Messages.GET_POLL_ANSWER_VOTERS.compile(channelId, messageId, Long.toString(answerId)), 1, 100, 100);
this.order = PaginationOrder.FORWARD;
}

Expand Down

0 comments on commit 36bc729

Please sign in to comment.