mirror of https://github.com/hykilpikonna/AquaDX
[api] Fix chusan rating display for ultima charts
parent
e753d02f9a
commit
eac33277e6
|
@ -225,7 +225,7 @@ public class ApiChuniV2PlayerDataController {
|
|||
}
|
||||
|
||||
return result.stream()
|
||||
.filter(detail -> detail.getLevel() != 4)
|
||||
.filter(detail -> detail.getLevel() != 5)
|
||||
.sorted(Comparator.comparingInt(RatingItem::getRating).reversed())
|
||||
.limit(30)
|
||||
.collect(Collectors.toList());
|
||||
|
@ -279,7 +279,7 @@ public class ApiChuniV2PlayerDataController {
|
|||
}
|
||||
|
||||
return result.stream()
|
||||
.filter(detail -> detail.getLevel() != 4)
|
||||
.filter(detail -> detail.getLevel() != 5)
|
||||
.sorted(Comparator.comparingInt(RatingItem::getRating).reversed())
|
||||
.limit(10)
|
||||
.collect(Collectors.toList());
|
||||
|
|
Loading…
Reference in New Issue