Default to neutral community rating if ratings are present
This commit is contained in:
parent
07dff35e35
commit
8fff93cf3d
|
@ -107,8 +107,7 @@ public class NumberInfoService {
|
|||
} else if (communityItem.getPositiveRatingsCount() > communityItem.getNeutralRatingsCount()
|
||||
+ communityItem.getNegativeRatingsCount()) {
|
||||
numberInfo.rating = NumberInfo.Rating.POSITIVE;
|
||||
} else if (communityItem.getNeutralRatingsCount() > communityItem.getPositiveRatingsCount()
|
||||
+ communityItem.getNegativeRatingsCount()) {
|
||||
} else {
|
||||
numberInfo.rating = NumberInfo.Rating.NEUTRAL;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue