Skip to content

Commit

Permalink
fix(uriel): fix submission ordering for calculating scoreboard (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar authored Jul 1, 2023
1 parent a1c587a commit 9d08fe7
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public List<Submission> getSubmissionsForScoreboard(
.select()
.whereContainerIs(containerJid)
.whereLastSubmissionIs(lastSubmissionId)
.orderBy(UnmodifiableModel_.ID, OrderDir.ASC)
.all();
Set<String> submissionJids = submissionModels.stream().map(m -> m.jid).collect(Collectors.toSet());

Expand Down

0 comments on commit 9d08fe7

Please sign in to comment.