We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If a leaderboard has multiple rows for the same rank, then the members_from_rank_range does not return correct value. e.g.
'Person 1' with 120 points is ranked 1 'Person 2' with 120 points is ranked 1 'Person 3' with 112 points is ranked 3
Then a) invoking members_from_rank_range(1, 1) - returns only 1 item ( expecting 2 ) b) invoking members_from_rank_range(2, 2) - returns 1 item ( expecting none )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If a leaderboard has multiple rows for the same rank, then the members_from_rank_range does not return correct value. e.g.
'Person 1' with 120 points is ranked 1
'Person 2' with 120 points is ranked 1
'Person 3' with 112 points is ranked 3
Then
a) invoking members_from_rank_range(1, 1) - returns only 1 item ( expecting 2 )
b) invoking members_from_rank_range(2, 2) - returns 1 item ( expecting none )
The text was updated successfully, but these errors were encountered: