mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-13 05:37:27 +08:00
[api] Fix chusan rating display for ultima charts
This commit is contained in:
@@ -225,7 +225,7 @@ public class ApiChuniV2PlayerDataController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return result.stream()
|
return result.stream()
|
||||||
.filter(detail -> detail.getLevel() != 4)
|
.filter(detail -> detail.getLevel() != 5)
|
||||||
.sorted(Comparator.comparingInt(RatingItem::getRating).reversed())
|
.sorted(Comparator.comparingInt(RatingItem::getRating).reversed())
|
||||||
.limit(30)
|
.limit(30)
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
@@ -279,7 +279,7 @@ public class ApiChuniV2PlayerDataController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return result.stream()
|
return result.stream()
|
||||||
.filter(detail -> detail.getLevel() != 4)
|
.filter(detail -> detail.getLevel() != 5)
|
||||||
.sorted(Comparator.comparingInt(RatingItem::getRating).reversed())
|
.sorted(Comparator.comparingInt(RatingItem::getRating).reversed())
|
||||||
.limit(10)
|
.limit(10)
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
|
|||||||
Reference in New Issue
Block a user