diff --git a/app/src/main/java/dummydomain/yetanothercallblocker/data/NumberInfoService.java b/app/src/main/java/dummydomain/yetanothercallblocker/data/NumberInfoService.java index 6b3e881..6881400 100644 --- a/app/src/main/java/dummydomain/yetanothercallblocker/data/NumberInfoService.java +++ b/app/src/main/java/dummydomain/yetanothercallblocker/data/NumberInfoService.java @@ -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; } }