[DIVA] Fix exex ranking not being return.

pull/1/head
samnyan 2020-01-23 13:48:40 +08:00
parent 305ccdf787
commit 7926959770
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class PsRankingHandler extends BaseHandler {
for (int i :
list) {
List<PlayerPvRecord> records = playerPvRecordRepository.findTop3ByPvIdAndEditionAndDifficultyOrderByMaxScoreDesc(i, Edition.ORIGINAL, difficulty);
List<PlayerPvRecord> records = playerPvRecordRepository.findTop3ByPvIdAndEditionAndDifficultyOrderByMaxScoreDesc(i, edition, difficulty);
resultCollections.put(i, new PsRankingCollection(i, edition, records));
}