Skip to content

Commit

Permalink
Issue #91: Fixed rating computation.
Browse files Browse the repository at this point in the history
  • Loading branch information
haumacher committed Dec 1, 2024
1 parent 0367176 commit ffc8ae6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ private static Rating rating(NumberInfo n) {
}
}
{
int votes = n.getRatingPing();
int votes = n.getRatingPoll();
if (votes > max) {
result = Rating.D_POLL;
max = votes;
Expand Down

0 comments on commit ffc8ae6

Please sign in to comment.