룰렛 정렬 순서 수정

- id 순서대로 정렬
This commit is contained in:
Klaus 2024-02-28 02:21:33 +09:00
parent 2f08149e48
commit 72b48e136f
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class NewRouletteService(
}
}
return rouletteList.sortedWith(compareByDescending<NewRoulette> { it.isActive }.thenBy { it.id })
return rouletteList.sortedBy { it.id }
.asSequence()
.map {
GetNewRouletteResponse(